diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5390521be1..9b43db5dd30 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,6 +44,10 @@ jobs: - 'src/components/**' - 'src/pages/**' - 'src/layouts/**' + - 'src/lib/markdown/**' + - 'src/scripts/check-markdown-fidelity.ts' + - 'src/scripts/markdown-fidelity-exceptions.ts' + - 'src/scripts/markdown-fidelity-baseline.json' - 'astro.config.*' any_non_solidity: - '**' @@ -337,4 +341,7 @@ jobs: fi - name: Validate LLM files - run: npm run check:llms \ No newline at end of file + run: npm run check:llms + + - name: Check Markdown fidelity + run: npm run check:markdown-fidelity \ No newline at end of file diff --git a/package.json b/package.json index 370b7fbdab1..079d72c4f29 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,8 @@ "quality-check": "npm run typecheck && npm run lint && npm run audit:exports", "quality-check:full": "npm run typecheck && npm run lint && npm run audit:dead-code", "generate:llms": "tsx --require tsconfig-paths/register src/scripts/generate-llms.ts", - "check:llms": "tsx --require tsconfig-paths/register src/scripts/validate-llms.ts" + "check:llms": "tsx --require tsconfig-paths/register src/scripts/validate-llms.ts", + "check:markdown-fidelity": "tsx --require tsconfig-paths/register src/scripts/check-markdown-fidelity.ts" }, "dependencies": { "@11ty/eleventy-fetch": "^4.0.1", diff --git a/src/lib/markdown/__tests__/buildMarkdownArtifact.test.ts b/src/lib/markdown/__tests__/buildMarkdownArtifact.test.ts new file mode 100644 index 00000000000..42878e0f0ea --- /dev/null +++ b/src/lib/markdown/__tests__/buildMarkdownArtifact.test.ts @@ -0,0 +1,194 @@ +import { describe, expect, it } from "@jest/globals" +import { + buildMarkdownArtifact, + normalizeMarkdownPath, + transformPageBodyToMarkdown, +} from "@lib/markdown/buildMarkdownArtifact.js" + +describe("buildMarkdownArtifact", () => { + it.each([ + ["cre/getting-started/cli-installation", "normal"], + ["cre-templates", "special"], + ["cre/reference/sdk/evm-client", "selector"], + ["data-streams/getting-started", "redirect"], + ])("classifies %s as %s", async (requestPath, routeKind) => { + const artifact = await buildMarkdownArtifact(requestPath) + + expect(artifact).not.toBeNull() + expect(artifact?.requestPath).toBe(normalizeMarkdownPath(requestPath)) + expect(artifact?.routeKind).toBe(routeKind) + }) + + it("rejects path escapes", async () => { + expect(normalizeMarkdownPath("../outside")).toBeNull() + await expect(buildMarkdownArtifact("../outside")).resolves.toBeNull() + }) + + it("trims long leading and trailing slash runs", () => { + const slashes = "/".repeat(100_000) + + expect(normalizeMarkdownPath(`${slashes}cre/getting-started${slashes}`)).toBe("cre/getting-started") + }) + + it("accepts an existing extensionless production request path", async () => { + await expect(buildMarkdownArtifact("cre/getting-started/cli-installation")).resolves.toMatchObject({ + requestPath: "cre/getting-started/cli-installation", + routeKind: "normal", + }) + }) + + it.each([".md", ".md.md", ".mdx"])("rejects a leftover %s extension", async (extension) => { + await expect(buildMarkdownArtifact(`cre/getting-started/cli-installation${extension}`)).resolves.toBeNull() + }) + + it.each([ + "cre/getting-started/cli-installation", + "cre/getting-started/cli-installation/macos-linux", + "cre/getting-started/cli-installation/windows", + ])("projects the ordered operating system selector for %s", async (requestPath) => { + const artifact = await buildMarkdownArtifact(requestPath) + const markdown = artifact?.markdown ?? "" + const macosLinux = "[macOS / Linux](/cre/getting-started/cli-installation/macos-linux)" + const windows = "[Windows](/cre/getting-started/cli-installation/windows)" + + expect(markdown).toContain("## Select your operating system") + expect(markdown).toContain(macosLinux) + expect(markdown).toContain(windows) + expect(markdown.indexOf(macosLinux)).toBeLessThan(markdown.indexOf(windows)) + }) + + it.each([ + { + lang: "typescript", + hasTypeScript: true, + hasGo: false, + hasTitles: false, + }, + { + lang: "GO", + hasTypeScript: false, + hasGo: true, + hasTitles: false, + }, + { + lang: "python", + hasTypeScript: true, + hasGo: true, + hasTitles: true, + }, + { + lang: undefined, + hasTypeScript: true, + hasGo: true, + hasTitles: true, + }, + ])( + "applies public lang=$lang selection without losing unknown or absent language branches", + async ({ lang, hasTypeScript, hasGo, hasTitles }) => { + const artifact = await buildMarkdownArtifact("cre/guides/workflow/secrets", lang === undefined ? {} : { lang }) + const markdown = artifact?.markdown ?? "" + + expect(markdown.includes('const secret = runtime.getSecret({ id: "API_KEY" }).result()')).toBe(hasTypeScript) + expect(markdown.includes('secret, err := runtime.GetSecret(&pb.SecretRequest{Id: "API_KEY"}).Await()')).toBe( + hasGo + ) + expect(markdown.includes("### Retrieving Secrets (TypeScript)")).toBe(hasTitles) + expect(markdown.includes("### Retrieving Secrets (Go)")).toBe(hasTitles) + } + ) + + it("projects FeedPage as an official API placeholder on the price feed addresses page", async () => { + const artifact = await buildMarkdownArtifact("data-feeds/price-feeds/addresses") + + expect(artifact?.markdown).toContain( + "Live values such as feed contract addresses are not inlined here. Wait for the official API to obtain current data." + ) + expect(artifact?.markdown).not.toContain("reference-data-directory") + }) +}) + +describe("transformPageBodyToMarkdown", () => { + it("retains titled branches when a recognized target has no matching component key", async () => { + const result = await transformPageBodyToMarkdown( + ``, + "/virtual/language-fallback.mdx", + { targetLanguage: "typescript" } + ) + + expect(result.transformMode).toBe("normal") + expect(result.markdown).toBe(`### Go only + +\`\`\`go +package main +\`\`\` +`) + }) + + it("reports the normal transform branch", async () => { + const result = await transformPageBodyToMarkdown("# Kept", "/virtual/normal.mdx") + + expect(result.transformMode).toBe("normal") + expect(result.markdown).toContain("# Kept") + }) + + it("reports the sanitized retry branch", async () => { + const body = `export async function load() { + return @ +} + +# Kept` + const result = await transformPageBodyToMarkdown(body, "/virtual/sanitized.mdx") + + expect(result.transformMode).toBe("sanitized") + expect(result.markdown).toContain("# Kept") + expect(result.markdown).not.toContain("return @") + }) + + it("reports the fallback branch", async () => { + const body = `# Kept + +{` + const result = await transformPageBodyToMarkdown(body, "/virtual/fallback.mdx") + + expect(result).toEqual({ + transformMode: "fallback", + markdown: body, + }) + }) + + it("strips component tags in the fallback branch", async () => { + const result = await transformPageBodyToMarkdown( + `Visible +{`, + "/virtual/fallback-components.mdx" + ) + + expect(result).toEqual({ + transformMode: "fallback", + markdown: `Visible +{`, + }) + }) + + it("preserves a long unterminated repeated component prefix in the fallback branch", async () => { + const body = `${" { + const result = await transformPageBodyToMarkdown("ignored", "/virtual/data-feeds/deprecating-feeds.mdx") + + expect(result.transformMode).toBe("replacement") + expect(result.markdown).toContain("## Deprecated Feeds") + }) +}) diff --git a/src/lib/markdown/__tests__/sourceScanners.test.ts b/src/lib/markdown/__tests__/sourceScanners.test.ts new file mode 100644 index 00000000000..69783689005 --- /dev/null +++ b/src/lib/markdown/__tests__/sourceScanners.test.ts @@ -0,0 +1,86 @@ +import { describe, expect, it } from "@jest/globals" +import { + readStaticDefaultImports, + readStaticJsxSelectorConditions, + removeLeadingMdxFrontmatter, + stripHighlighterComments, +} from "@lib/markdown/sourceScanners.js" + +describe("readStaticDefaultImports", () => { + it("reads single-line and multiline static default imports", () => { + const imports = readStaticDefaultImports(`--- +import Alpha from "./alpha.mdx" +import $Code + from + './code.ts?raw' +import { ignored } from "./named.js" +import "./side-effect.js" +---`) + + expect(Object.fromEntries(imports)).toEqual({ + Alpha: "./alpha.mdx", + $Code: "./code.ts?raw", + }) + }) + + it("scans repeated unterminated import prefixes deterministically", () => { + const source = `${'import Broken from "unterminated\n'.repeat(10_000)}import Kept from "./kept.mdx"` + + expect(Object.fromEntries(readStaticDefaultImports(source))).toEqual({ Kept: "./kept.mdx" }) + expect(Object.fromEntries(readStaticDefaultImports(source))).toEqual({ Kept: "./kept.mdx" }) + }) +}) + +describe("readStaticJsxSelectorConditions", () => { + it("maps static selector values to JSX components", () => { + const conditions = readStaticJsxSelectorConditions( + `{callout === "alpha" && } +{callout + === + 'beta' + && + }`, + "callout" + ) + + expect(Object.fromEntries(conditions)).toEqual({ alpha: "Alpha", beta: "Beta" }) + }) + + it("scans repeated unterminated selector prefixes deterministically", () => { + const source = `${'{callout === "unterminated\n'.repeat(10_000)}{callout === "kept" && }` + + expect(Object.fromEntries(readStaticJsxSelectorConditions(source, "callout"))).toEqual({ kept: "Kept" }) + expect(Object.fromEntries(readStaticJsxSelectorConditions(source, "callout"))).toEqual({ kept: "Kept" }) + }) +}) + +describe("removeLeadingMdxFrontmatter", () => { + it.each([ + ["LF", "---\ntitle: Example\n---\n\n# Body\n", "\n# Body\n"], + ["CRLF", "---\r\ntitle: Example\r\n---\r\n# Body\r\n", "# Body\r\n"], + ["trailing fence whitespace", "--- \ntitle: Example\n--- \n# Body", "# Body"], + ])("removes leading %s frontmatter without changing body newlines", (_name, source, expected) => { + expect(removeLeadingMdxFrontmatter(source)).toBe(expected) + }) + + it("preserves missing and unterminated frontmatter", () => { + expect(removeLeadingMdxFrontmatter("# Body\n---\n")).toBe("# Body\n---\n") + expect(removeLeadingMdxFrontmatter("---\ntitle: Example")).toBe("---\ntitle: Example") + }) +}) + +describe("stripHighlighterComments", () => { + it("removes supported markers while preserving other text and whitespace-only lines", () => { + const code = `const value = 1 // highlight-line + +\t// highlight-start +next // regular comment +end // highlight-end ` + + expect(stripHighlighterComments(code)).toBe(`const value = 1 + + +next // regular comment +end `) + }) +}) diff --git a/src/lib/markdown/__tests__/transformMarkdown.test.ts b/src/lib/markdown/__tests__/transformMarkdown.test.ts index b564bc74200..4dcba74b5fa 100644 --- a/src/lib/markdown/__tests__/transformMarkdown.test.ts +++ b/src/lib/markdown/__tests__/transformMarkdown.test.ts @@ -52,6 +52,579 @@ contract Test { expect(result).toContain("Col1") expect(result).toContain("Col2") }) + + it.each([ + { + name: "ClickToZoom", + component: ``, + projection: "![A](/a.jpg)", + }, + { + name: "Address", + component: `
`, + projection: "[0x1234](https://example.test/address)", + }, + { + name: "Fragment", + component: ` +## Fragment heading + +- first +- second +`, + projection: `## Fragment heading + +- first +- second`, + }, + { + name: "Accordion", + component: ` +- first +- second +`, + projection: `### 2. Deploy + +- first +- second`, + }, + { + name: "Tabs", + component: ` + Shell + +\`\`\`sh +npm test +\`\`\` + +`, + projection: `### Shell + +\`\`\`sh +npm test +\`\`\``, + }, + { + name: "PackageManagerTabs", + component: ` + +\`\`\`sh +yarn add +\`\`\` + + +\`\`\`sh +npm install +\`\`\` + +`, + projection: `### npm + +\`\`\`sh +npm install +\`\`\` + +### yarn + +\`\`\`sh +yarn add +\`\`\``, + }, + ])("keeps block siblings around a flow-position $name projection", async ({ component, projection }) => { + const result = await transformMarkdown( + `Intro paragraph. + +## Heading + +${component} + +### Sub + +Tail.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Intro paragraph. + +## Heading + +${projection} + +### Sub + +Tail. +`) + }) + + it("retains indented Tabs panel content inside a callout", async () => { + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + + expect(result).toContain("> npm install example") + }) + + it("preserves inline links, code, strong text, and subscript children", async () => { + const result = await transformMarkdown( + `Please Contact us to talk to an expert. + +The field marketStatus matters. + +The bonded amount is credited.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Please [Contact us](https://chain.link/contact) to talk to an expert. + +The field \`marketStatus\` matters. + +**The bonded amount is credited.** +`) + }) + + it("preserves JSX links, code, and lists in table cells", async () => { + const result = await transformMarkdown( + `| Key | Value | +| --- | --- | +| PerOwner.VaultSecretsLimit | Max secrets per owner | +|
  • first
  • second
| list |`, + "/fake/page.mdx" + ) + + expect(result).toContain("[`PerOwner.VaultSecretsLimit`](#limit)") + expect(result).toContain("first; second") + expect(result).not.toContain(" { + const result = await transformMarkdown( + `Intro paragraph. + +## Heading + +
+ + + + + + + + + + + + + +
NetworkChain ID
Ethereum Mainnet1
+
+ +### Sub + +Tail.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Intro paragraph. + +## Heading + +Network +Chain ID + +Ethereum Mainnet +\`1\` + +### Sub + +Tail. +`) + expect(result).not.toContain(" { + const result = await transformMarkdown( + `Intro paragraph. + +## Heading + + + +### Sub + +Tail.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Intro paragraph. + +## Heading + +[See the code](https://example.test) + +### Sub + +Tail. +`) + }) + + it("keeps a flow MDX string expression without collapsing surrounding blocks", async () => { + const result = await transformMarkdown( + `Intro paragraph. + +## Heading + +{" "} + +### Sub + +Tail.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Intro paragraph. + +## Heading + +### Sub + +Tail. +`) + }) + + it("keeps static MDX whitespace and string expressions while dropping dynamic expressions", async () => { + const result = await transformMarkdown( + `Word{" "}next and {"literal"} end. + +Before {runtimeValue} after.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Word next and literal end. + +Before after. +`) + }) + + it("uses a depth-four Accordion heading", async () => { + const result = await transformMarkdown( + ` +Body instructions. +`, + "/fake/page.mdx" + ) + + expect(result).toBe(`#### 2. Deploy the contract + +Body instructions. +`) + }) + + it("projects PageTabs header descriptions only when the header is shown", async () => { + const withHeader = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + expect(withHeader).toBe(`## Install + +Choose an installation path. + +- [macOS](/macos) + +- [Windows](/windows) +`) + + const withoutHeader = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + expect(withoutHeader).toBe(`- [Only](/only) +`) + }) + + it("keeps native and ClickToZoom images as Markdown image syntax", async () => { + const result = await transformMarkdown( + `![Plain](/plain.png) + +`, + "/fake/page.mdx" + ) + + expect(result).toBe(`![Plain](/plain.png) + +![Zoom](/zoom.png) +`) + expect(result).not.toContain("(Image: Plain)") + expect(result).not.toContain("(Image: Zoom)") + }) + + it("projects PageTabs in source order with grouped labels and first URLs", async () => { + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + + expect(result).toContain("## Select your operating system") + expect(result).toContain("[macOS / Linux](/install/macos)") + expect(result).not.toContain("/install/linux") + expect(result.indexOf("[macOS / Linux]")).toBeLessThan(result.indexOf("[Windows]")) + + const withoutHeader = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + expect(withoutHeader).not.toContain("## Guide Versions") + expect(withoutHeader).toContain("[Only](/only)") + }) + + it("pairs Tabs and TabsContent labels with matching panels", async () => { + for (const component of ["Tabs", "TabsContent"]) { + const result = await transformMarkdown( + `<${component}> + First + Second + Second panel + First panel +`, + "/fake/page.mdx" + ) + + expect(result.indexOf("### First")).toBeLessThan(result.indexOf("First panel")) + expect(result.indexOf("First panel")).toBeLessThan(result.indexOf("### Second")) + expect(result.indexOf("### Second")).toBeLessThan(result.indexOf("Second panel")) + } + }) + + it("projects PackageManagerTabs as npm then yarn even when yarn is first", async () => { + const result = await transformMarkdown( + ` + yarn add example + npm install example +`, + "/fake/page.mdx" + ) + + expect(result.indexOf("### npm")).toBeLessThan(result.indexOf("npm install example")) + expect(result.indexOf("npm install example")).toBeLessThan(result.indexOf("### yarn")) + expect(result.indexOf("### yarn")).toBeLessThan(result.indexOf("yarn add example")) + }) + + it("unwraps Fragment content", async () => { + const result = await transformMarkdown(`Visible **content**`, "/fake/page.mdx") + expect(result).toContain("Visible **content**") + expect(result).not.toContain("Fragment") + }) + + it("projects Accordion number, title, and body", async () => { + const result = await transformMarkdown( + ` +Body instructions. +`, + "/fake/page.mdx" + ) + expect(result).toContain("### 2. Deploy the contract") + expect(result).toContain("Body instructions.") + }) + + it("uses an Accordion title slot instead of the title prop", async () => { + const withTitleSlot = await transformMarkdown( + ` + Review the deployment +Body remains visible. +`, + "/fake/page.mdx" + ) + expect(withTitleSlot).toContain("### 3. Review the deployment") + expect(withTitleSlot).not.toContain("Ignored prop title") + expect(withTitleSlot).toContain("Body remains visible.") + }) + + it("projects Address with exact URLs and static truncation", async () => { + const result = await transformMarkdown( + `Exact:
+Truncated:
`, + "/fake/page.mdx" + ) + expect(result).toContain("[0x1234567890abcdef](https://example.test/address/0x1234567890abcdef?view=code)") + expect(result).toContain("[0x1234...cdef](https://example.test/exact)") + }) + + it("projects a block ClickToZoom as an exact Markdown image", async () => { + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + + expect(result).toBe("![Architecture diagram](/images/architecture.png)\n") + }) + + it("projects an inline ClickToZoom with default alt text", async () => { + const result = await transformMarkdown(`Before after.`, "/fake/page.mdx") + + expect(result).toBe("Before ![Image](/images/detail.png) after.\n") + }) + + it("projects ClickToZoom through the AST with a long repeated attribute value", async () => { + const repeated = " =".repeat(50_000) + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + + expect(result).toBe("![Detail](/images/detail.png)\n") + }) + + it("projects Aside as a Markdown blockquote", async () => { + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + expect(result).toContain("> **WARNING: Important**") + expect(result).toContain("> Read the warning.") + }) + + it("projects an Aside with a long repeated attribute value", async () => { + const repeated = "a".repeat(100_000) + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + expect(result).toContain(`> **NOTE: ${repeated}**`) + expect(result).toContain("> Body.") + }) + + it("projects Callout like Aside", async () => { + const result = await transformMarkdown( + ` +Read the warning. +`, + "/fake/page.mdx" + ) + expect(result).toContain("> **CAUTION: Check this**") + expect(result).toContain("> Read the warning.") + }) + + it("projects SchemaFieldsTable from report schema definitions", async () => { + const result = await transformMarkdown(``, "/fake/page.mdx") + expect(result).toContain("| Field") + expect(result).toContain("`feedId`") + expect(result).toContain("`price`") + expect(result).toContain("Time-weighted average price") + }) + + it("projects FeedPage as an official API placeholder without merging flow siblings", async () => { + const result = await transformMarkdown( + `Intro paragraph. + +## Heading + + + +### Sub + +Tail.`, + "/fake/page.mdx" + ) + + expect(result).toBe(`Intro paragraph. + +## Heading + +Live values such as feed contract addresses are not inlined here. Wait for the official API to obtain current data. + +### Sub + +Tail. +`) + expect(result).not.toContain(" { + const result = await transformMarkdown(``, "/fake/page.mdx") + + expect(result).toContain( + "Live values such as feed contract addresses are not inlined here. Wait for the official API to obtain current data." + ) + expect(result).not.toContain("https://") + }) + + it("projects every static CodeHighlightBlockMulti language when no target is set", async () => { + const result = await transformMarkdown( + ``, + "/fake/page.mdx" + ) + expect(result).toContain("```ts") + expect(result).toContain("const answer = 42") + expect(result).toContain("```go") + expect(result).toContain("package main") + expect(result.indexOf("```ts")).toBeLessThan(result.indexOf("```go")) + + const selected = await transformMarkdown( + ``, + "/fake/page.mdx", + { targetLanguage: "go" } + ) + expect(selected).not.toContain("```ts") + expect(selected).not.toContain("ts only") + expect(selected).toContain("```go") + expect(selected).toContain("go only") + }) + + it("removes residual MDX, HTML, ESM, and nonliteral projections", async () => { + const result = await transformMarkdown( + `import Unknown from "./Unknown" + +Before hidden JSX after. +hidden HTML +{dynamicValue} +`, + "/fake/page.mdx" + ) + expect(result).toContain("Before") + expect(result).toContain("after.") + expect(result).not.toMatch(/<[/A-Za-z]/) + expect(result).not.toContain("import Unknown") + expect(result).not.toContain("{dynamicValue}") + expect(result).not.toContain("dynamicPages") + }) }) describe("extractFrontmatter", () => { diff --git a/src/lib/markdown/buildMarkdownArtifact.ts b/src/lib/markdown/buildMarkdownArtifact.ts new file mode 100644 index 00000000000..4c466d18dc8 --- /dev/null +++ b/src/lib/markdown/buildMarkdownArtifact.ts @@ -0,0 +1,378 @@ +import fs from "node:fs/promises" +import path from "node:path" +import { transformPageToMarkdown } from "./transformMarkdown.js" +import type { MarkdownArtifact } from "./types.js" +import { extractFrontmatter, getIsoStringOrUndefined, toCanonicalUrl, toContentRelative } from "./utils.js" + +const SITE_BASE = "https://docs.chain.link" +const CONTENT_ROOT = path.resolve("src/content") +const LLMS_DIRECTIVE = "> For the complete documentation index, see [llms.txt](/llms.txt)." + +const MARKDOWN_REDIRECTS: Record = { + "ccip/tutorials/cross-chain-tokens": "ccip/tutorials/evm/cross-chain-tokens", + + // Data Streams + "data-streams/getting-started": "data-streams/tutorials/streams-trade/getting-started", + "data-streams/getting-started-hardhat": "data-streams/tutorials/streams-trade/getting-started-hardhat", + "data-streams/reference/streams-direct/streams-direct-onchain-verification": + "data-streams/reference/onchain-verification", + + // Newly surfaced redirects + "chainlink-functions/resources/concepts": "chainlink-functions/resources", + "cre/getting-started/conclusion": "cre/getting-started", + "data-streams/reference/streams-direct/streams-direct-interface-ws": "data-streams/reference/interface-ws", +} + +type TransformOutcome = Pick + +type SpecialResolution = { + resolvedPath: string + sourceCanonicalPath: string + sourcePath: string +} + +type CreResolution = + | { kind: "none" } + | { kind: "resolved"; path: string; sourcePath: string } + | { kind: "selector"; goPath: string; tsPath: string } + +export function normalizeMarkdownPath(pathParam: string | undefined): string | null { + if (!pathParam) return null + + let start = 0 + let end = pathParam.length + while (start < end && pathParam[start] === "/") start++ + while (end > start && pathParam[end - 1] === "/") end-- + const cleanPath = pathParam.slice(start, end) + + if (!cleanPath || /\.(?:md|mdx)$/i.test(cleanPath)) return null + + const segments = cleanPath.split("/") + if (segments.some((segment) => segment === ".." || segment === "." || segment === "")) { + return null + } + + return cleanPath +} + +export async function buildMarkdownArtifact( + requestPath: string, + options: { lang?: string } = {} +): Promise { + const cleanPath = normalizeMarkdownPath(requestPath) + if (!cleanPath) return null + + const specialResolution = await resolveSpecialCanonicalMarkdownPath(cleanPath) + if (specialResolution) { + return buildMarkdownArtifactFromPath( + cleanPath, + specialResolution.resolvedPath, + "special", + options, + specialResolution.sourcePath, + specialResolution.sourceCanonicalPath + ) + } + + const creResolution = await resolveCreCanonicalMarkdownPath(cleanPath) + if (creResolution.kind === "selector") { + return { + requestPath: cleanPath, + routeKind: "selector", + transformMode: "normal", + markdown: buildCreSelectorMarkdown(cleanPath, creResolution), + } + } + + const resolvedPath = creResolution.kind === "resolved" ? creResolution.path : cleanPath + const redirectTarget = MARKDOWN_REDIRECTS[resolvedPath] + if (redirectTarget) { + return { + requestPath: cleanPath, + routeKind: "redirect", + transformMode: "normal", + markdown: buildMarkdownMovedBody(resolvedPath, redirectTarget), + } + } + + return buildMarkdownArtifactFromPath( + cleanPath, + resolvedPath, + "normal", + options, + creResolution.kind === "resolved" ? creResolution.sourcePath : undefined + ) +} + +export async function transformPageBodyToMarkdown( + body: string, + mdxAbsPath: string, + options: { siteBase?: string; targetLanguage?: string } = {} +): Promise { + if (mdxAbsPath.includes("data-feeds/deprecating-feeds")) { + return { + transformMode: "replacement", + markdown: ` +## Deprecated Feeds + +This page contains dynamically generated or component-heavy content. + +For the full and most up-to-date information, see: +https://docs.chain.link/data-feeds/deprecating-feeds +`.trim(), + } + } + + const transformOptions = { + siteBase: options.siteBase ?? SITE_BASE, + targetLanguage: options.targetLanguage, + } + + try { + return { + transformMode: "normal", + markdown: await transformPageToMarkdown(body, mdxAbsPath, transformOptions), + } + } catch { + const sanitizedBody = stripRuntimeMdxSyntax(body) + + try { + return { + transformMode: "sanitized", + markdown: await transformPageToMarkdown(sanitizedBody, mdxAbsPath, transformOptions), + } + } catch { + return { + transformMode: "fallback", + markdown: buildFallbackMarkdownBody(sanitizedBody), + } + } + } +} + +async function resolveSpecialCanonicalMarkdownPath(cleanPath: string): Promise { + const specialPathMap: Record = { + "cre-templates": "cre/templates", + } + + const resolvedPath = specialPathMap[cleanPath] + if (!resolvedPath) return null + + const sourcePath = await findContentFile(resolvedPath) + if (!sourcePath) return null + + return { + resolvedPath, + sourceCanonicalPath: cleanPath, + sourcePath, + } +} + +async function resolveCreCanonicalMarkdownPath(cleanPath: string): Promise { + if (!cleanPath.startsWith("cre/")) { + return { kind: "none" } + } + + const direct = await findContentFile(cleanPath) + if (direct) { + return { kind: "resolved", path: cleanPath, sourcePath: direct } + } + + const goPath = `${cleanPath}-go` + const tsPath = `${cleanPath}-ts` + const [goFile, tsFile] = await Promise.all([findContentFile(goPath), findContentFile(tsPath)]) + + if (goFile && tsFile) { + return { kind: "selector", goPath, tsPath } + } + + if (goFile) { + return { kind: "resolved", path: goPath, sourcePath: goFile } + } + + if (tsFile) { + return { kind: "resolved", path: tsPath, sourcePath: tsFile } + } + + return { kind: "none" } +} + +async function buildMarkdownArtifactFromPath( + requestPath: string, + resolvedPath: string, + routeKind: "normal" | "special", + options: { lang?: string }, + knownSourcePath?: string, + sourceCanonicalPathOverride?: string +): Promise { + const sourcePath = knownSourcePath ?? (await findContentFile(resolvedPath)) + if (!sourcePath) return null + + const raw = await fs.readFile(sourcePath, "utf-8") + const { body, fmTitle, fmLastModified } = extractFrontmatter(raw) + const transformed = await transformPageBodyToMarkdown(body, sourcePath, { + siteBase: SITE_BASE, + targetLanguage: options.lang, + }) + + const section = resolvedPath.split("/")[0] + const relFromContent = toContentRelative(sourcePath) + const derivedSourceUrl = toCanonicalUrl(section, relFromContent, SITE_BASE) + const sourceUrl = sourceCanonicalPathOverride ? `${SITE_BASE}/${sourceCanonicalPathOverride}` : derivedSourceUrl + const title = fmTitle || path.basename(sourcePath, path.extname(sourcePath)) + const lastModified = getIsoStringOrUndefined(fmLastModified) + const headerLines = [ + `# ${title}`, + `Source: ${sourceUrl}`, + ...(lastModified ? [`Last Updated: ${lastModified}`] : []), + "", + LLMS_DIRECTIVE, + "", + ] + + return { + requestPath, + routeKind, + transformMode: transformed.transformMode, + sourcePath: relFromContent, + markdown: [...headerLines, transformed.markdown.trim()].join("\n"), + } +} + +async function findContentFile(cleanPath: string): Promise { + const possiblePaths = [ + path.resolve(CONTENT_ROOT, `${cleanPath}.mdx`), + path.resolve(CONTENT_ROOT, cleanPath, "index.mdx"), + path.resolve(CONTENT_ROOT, `${cleanPath}.md`), + path.resolve(CONTENT_ROOT, cleanPath, "index.md"), + ] + + for (const candidate of possiblePaths) { + if (!candidate.startsWith(`${CONTENT_ROOT}${path.sep}`)) continue + try { + await fs.access(candidate) + return candidate + } catch {} + } + + return null +} + +function buildFallbackMarkdownBody(body: string): string { + return stripFallbackComponentTags(stripRuntimeMdxSyntax(body)).trim() +} + +function stripFallbackComponentTags(body: string): string { + const chunks: string[] = [] + let copiedThrough = 0 + let searchFrom = 0 + + while (searchFrom < body.length) { + const tagStart = body.indexOf("<", searchFrom) + if (tagStart === -1) break + + const nameStart = body.charCodeAt(tagStart + 1) === 47 ? tagStart + 2 : tagStart + 1 + const firstNameChar = body.charCodeAt(nameStart) + if (firstNameChar < 65 || firstNameChar > 90) { + searchFrom = tagStart + 1 + continue + } + + const tagEnd = body.indexOf(">", nameStart + 1) + if (tagEnd === -1) { + chunks.push(body.slice(copiedThrough)) + return chunks.join("") + } + + chunks.push(body.slice(copiedThrough, tagStart)) + copiedThrough = tagEnd + 1 + searchFrom = copiedThrough + } + + chunks.push(body.slice(copiedThrough)) + return chunks.join("") +} + +function stripRuntimeMdxSyntax(body: string): string { + const lines = body.split("\n") + const output: string[] = [] + let skippingExportBlock = false + let skippingImportBlock = false + let braceDepth = 0 + + for (const line of lines) { + const trimmed = line.trim() + + if (skippingImportBlock) { + if (trimmed.includes(" from ") || trimmed.endsWith('"') || trimmed.endsWith("'")) { + skippingImportBlock = false + } + continue + } + + if (skippingExportBlock) { + braceDepth += countChar(line, "{") + braceDepth -= countChar(line, "}") + + if (braceDepth <= 0) { + skippingExportBlock = false + braceDepth = 0 + } + continue + } + + if (/^import\s+/.test(trimmed)) { + if (!trimmed.includes(" from ")) skippingImportBlock = true + continue + } + + if (/^export\s+(async\s+)?function\s+/.test(trimmed)) { + skippingExportBlock = true + braceDepth = countChar(line, "{") - countChar(line, "}") + continue + } + + if (/^export\s+(const|let|var)\s+/.test(trimmed)) { + continue + } + + output.push(line) + } + + return output.join("\n") +} + +function countChar(value: string, char: string): number { + return value.split(char).length - 1 +} + +function buildMarkdownMovedBody(sourcePath: string, targetPath: string): string { + const sourceUrl = `${SITE_BASE}/${sourcePath}` + const targetUrl = `/${targetPath}.md` + + return [ + "# Redirect", + `Source: ${sourceUrl}`, + "", + LLMS_DIRECTIVE, + "", + "This page has moved.", + "", + `Use the current documentation: [${targetPath}](${targetUrl}).`, + "", + ].join("\n") +} + +function buildCreSelectorMarkdown(canonicalPath: string, resolution: { goPath: string; tsPath: string }): string { + const canonicalUrl = `${SITE_BASE}/${canonicalPath}` + return [ + `# ${canonicalPath}`, + `Source: ${canonicalUrl}`, + "", + LLMS_DIRECTIVE, + "", + `- Go: /${resolution.goPath}.md`, + `- TypeScript: /${resolution.tsPath}.md`, + "", + ].join("\n") +} diff --git a/src/lib/markdown/componentHandlers.ts b/src/lib/markdown/componentHandlers.ts index 9db02c21a32..d30b76e6419 100644 --- a/src/lib/markdown/componentHandlers.ts +++ b/src/lib/markdown/componentHandlers.ts @@ -6,11 +6,204 @@ import fs from "fs" import path from "path" import type { Parent, Literal, Node } from "unist" import type { MdxJsxNode, ComponentContext } from "./types.js" +import { + readStaticDefaultImports, + readStaticJsxSelectorConditions, + removeLeadingMdxFrontmatter, + stripHighlighterComments, +} from "./sourceScanners.js" import { calculateNetworkFeesForTokenMechanismDirect, calculateMessagingNetworkFeesDirect, - TokenMechanism, -} from "../../config/data/ccip/index.js" +} from "../../config/data/ccip/utils.js" +import { TokenMechanism } from "../../config/data/ccip/types.js" +import { REPORT_SCHEMA_DEFINITIONS } from "../../features/feeds/components/reportSchemaData.js" + +type StaticValue = null | boolean | number | string | StaticValue[] | { [key: string]: StaticValue } +type EstreeNode = { + type?: string + value?: unknown + name?: string + operator?: string + argument?: EstreeNode + elements?: (EstreeNode | null)[] + properties?: EstreeNode[] + key?: EstreeNode + computed?: boolean + kind?: string + method?: boolean + shorthand?: boolean + expressions?: EstreeNode[] + quasis?: { value?: { cooked?: string | null; raw?: string } }[] +} + +const NON_STATIC = Symbol("non-static") + +export function staticEstreeValue(node: EstreeNode | undefined): StaticValue | typeof NON_STATIC { + if (!node) return NON_STATIC + if (node.type === "Literal") { + return node.value === null || ["boolean", "number", "string"].includes(typeof node.value) + ? (node.value as StaticValue) + : NON_STATIC + } + if (node.type === "TemplateLiteral" && node.expressions?.length === 0 && node.quasis?.length === 1) { + return node.quasis[0].value?.cooked ?? node.quasis[0].value?.raw ?? "" + } + if (node.type === "UnaryExpression" && (node.operator === "+" || node.operator === "-")) { + const value = staticEstreeValue(node.argument) + return typeof value === "number" ? (node.operator === "-" ? -value : value) : NON_STATIC + } + if (node.type === "ArrayExpression") { + const values: StaticValue[] = [] + for (const element of node.elements || []) { + if (!element) return NON_STATIC + const value = staticEstreeValue(element) + if (value === NON_STATIC) return NON_STATIC + values.push(value) + } + return values + } + if (node.type === "ObjectExpression") { + const value: { [key: string]: StaticValue } = {} + for (const property of node.properties || []) { + if ( + property.type !== "Property" || + property.computed || + property.kind !== "init" || + property.method || + property.shorthand + ) { + return NON_STATIC + } + const key = + property.key?.type === "Identifier" + ? property.key.name + : property.key?.type === "Literal" && + (typeof property.key.value === "string" || typeof property.key.value === "number") + ? String(property.key.value) + : undefined + const propertyValue = staticEstreeValue(property.value as EstreeNode) + if (key === undefined || propertyValue === NON_STATIC) return NON_STATIC + value[key] = propertyValue + } + return value + } + return NON_STATIC +} + +function staticAttribute(node: MdxJsxNode, name: string): StaticValue | typeof NON_STATIC | undefined { + const attribute = node.attributes?.find((candidate) => candidate.name === name) + if (!attribute) return undefined + const rawValue = attribute.value as unknown + if (rawValue === null || rawValue === undefined) return true + if (typeof rawValue === "string") return rawValue + if (typeof rawValue !== "object") return NON_STATIC + const expression = ( + rawValue as { + data?: { estree?: { body?: { expression?: EstreeNode }[] } } + } + ).data?.estree?.body?.[0]?.expression + return staticEstreeValue(expression) +} + +function dropNode(parent: Parent, index: number): number { + parent.children.splice(index, 1) + return index +} + +function textNode(value: string): Literal { + return { type: "text", value } as Literal +} + +function headingNode(depth: number, value: string): Parent { + return { type: "heading", depth, children: [textNode(value)] } as Parent +} + +function paragraphNode(children: Node[]): Parent { + return { type: "paragraph", children } as Parent +} + +const FLOW_TYPES: Record = { + paragraph: true, + heading: true, + blockquote: true, + list: true, + listItem: true, + code: true, + table: true, + tableRow: true, + tableCell: true, + thematicBreak: true, + html: true, + definition: true, + footnoteDefinition: true, + mdxJsxFlowElement: true, + mdxFlowExpression: true, + mdxjsEsm: true, +} + +export function replaceNode(node: { type: string }, parent: Parent, index: number, replacement: Node[]): number { + if (node.type === "mdxJsxFlowElement" || node.type === "mdxFlowExpression") { + const flowNodes: Node[] = [] + let phrasingNodes: Node[] = [] + for (const replacementNode of replacement) { + if (FLOW_TYPES[replacementNode.type]) { + if (phrasingNodes.length > 0) { + flowNodes.push(paragraphNode(phrasingNodes)) + phrasingNodes = [] + } + flowNodes.push(replacementNode) + } else { + phrasingNodes.push(replacementNode) + } + } + if (phrasingNodes.length > 0) flowNodes.push(paragraphNode(phrasingNodes)) + replacement = flowNodes + } + parent.children.splice(index, 1, ...replacement) + return index +} + +function linkNode(label: string, url: string): Parent { + return { type: "link", url, children: [textNode(label)] } as Parent +} + +function staticNodeText(node: Node): string | typeof NON_STATIC { + if (node.type === "text" || node.type === "inlineCode") { + return typeof (node as Literal).value === "string" ? String((node as Literal).value) : NON_STATIC + } + if (node.type === "break") return " " + if (node.type === "paragraph" || node.type === "emphasis" || node.type === "strong" || node.type === "delete") { + const parts: string[] = [] + for (const child of (node as Parent).children || []) { + const part = staticNodeText(child) + if (part === NON_STATIC) return NON_STATIC + parts.push(part) + } + return parts.join("") + } + return NON_STATIC +} + +function staticChildrenText(node: Parent): string | typeof NON_STATIC { + const parts: string[] = [] + for (const child of node.children || []) { + const part = staticNodeText(child) + if (part === NON_STATIC) return NON_STATIC + parts.push(part) + } + return parts.join("").trim() +} + +function resolveExistingWithin(root: string, candidate: string): string | undefined { + try { + const realRoot = fs.realpathSync(root) + const realCandidate = fs.realpathSync(path.resolve(root, candidate)) + if (realCandidate === realRoot || realCandidate.startsWith(realRoot + path.sep)) return realCandidate + } catch { + // Missing files are not projectable. + } +} /** * Load CcipCommon callout mapping dynamically from CcipCommon.astro @@ -22,24 +215,16 @@ export function loadCcipCommonMapping(): Record { const astroContent = fs.readFileSync(astroFilePath, "utf-8") // First, build a map of Component names to file paths from imports - const importRegex = /import\s+(\w+)\s+from\s+["'](.+?)["']/g - const componentToFile: Record = {} - - for (const match of astroContent.matchAll(importRegex)) { - const [, componentName, filePath] = match - const cleanPath = filePath.replace(/^\.\//, "") - componentToFile[componentName] = cleanPath - } + const componentToFile = readStaticDefaultImports(astroContent) // Then, parse the conditional statements to map callout names to component names - const conditionalRegex = /callout\s+===\s+["'](\w+)["']\s+&&\s+<(\w+)/g + const conditions = readStaticJsxSelectorConditions(astroContent, "callout") const mapping: Record = {} - for (const match of astroContent.matchAll(conditionalRegex)) { - const [, calloutName, componentName] = match - const filePath = componentToFile[componentName] + for (const [calloutName, componentName] of conditions) { + const filePath = componentToFile.get(componentName) if (filePath) { - mapping[calloutName] = filePath + mapping[calloutName] = filePath.startsWith("./") ? filePath.slice(2) : filePath } } @@ -74,15 +259,13 @@ export function handleCcipCommon( const fileName = calloutFileMap[calloutValue] if (fileName) { - const calloutPath = path.resolve("src/features/ccip", fileName) + const calloutPath = resolveExistingWithin(path.resolve("src/features/ccip"), fileName) - if (fs.existsSync(calloutPath)) { + if (calloutPath) { let calloutContent = fs.readFileSync(calloutPath, "utf-8") // Strip frontmatter if present - if (calloutContent.trim().startsWith("---")) { - calloutContent = calloutContent.replace(/^---\s*\n[\s\S]*?\n---\s*\n/, "") - } + calloutContent = removeLeadingMdxFrontmatter(calloutContent) // Strip import statements calloutContent = calloutContent.replace(/^import\s+.+$/gm, "").trim() @@ -91,13 +274,15 @@ export function handleCcipCommon( const calloutTree = context.processor.parse(calloutContent) if (calloutTree && calloutTree.children) { parent.children.splice(index, 1, ...calloutTree.children) - return index + calloutTree.children.length + return index } } } } + return dropNode(parent, index) } catch (e) { console.warn(`Failed to process CcipCommon in ${context.mdxAbsPath}:`, e) + return dropNode(parent, index) } } @@ -121,19 +306,17 @@ export function handleCodeHighlightBlock( ?.data?.estree?.body?.[0]?.expression?.name if (codeVarName) { - const importRegex = new RegExp(`import\\s+${codeVarName}\\s+from\\s+['"](.+?)['"]`) - const match = context.markdown.match(importRegex) - - if (match) { - const importPath = match[1].split("?")[0] // Strip "?raw" and other query params - const codeAbsPath = path.resolve(path.dirname(context.mdxAbsPath), importPath) - let codeContent = fs.readFileSync(codeAbsPath, "utf-8") + const importPath = readStaticDefaultImports(context.markdown).get(codeVarName)?.split("?")[0] - // Strip highlighter comments - codeContent = codeContent - .split("\n") - .map((line) => line.replace(/\s*\/\/\s*highlight-(line|start|end)/, "")) - .join("\n") + if (importPath) { + const codeAbsPath = resolveExistingWithin( + process.cwd(), + path.resolve(path.dirname(context.mdxAbsPath), importPath) + ) + if (!codeAbsPath) { + return dropNode(parent, index) + } + const codeContent = stripHighlighterComments(fs.readFileSync(codeAbsPath, "utf-8")) const langAttr = node.attributes?.find((a) => a.name === "lang") const titleAttr = node.attributes?.find((a) => a.name === "title") @@ -155,8 +338,10 @@ export function handleCodeHighlightBlock( return index + newNodes.length } } + return dropNode(parent, index) } catch (e) { console.warn(`Failed to process CodeHighlightBlock in ${context.mdxAbsPath}:`, e) + return dropNode(parent, index) } } @@ -175,72 +360,106 @@ export function handleCodeHighlightBlockMulti( context: ComponentContext ): number | void { try { - const languagesAttr = node.attributes?.find((a) => a.name === "languages") - - if (languagesAttr && context.targetLanguage) { - // Extract the code variable name for the target language - // The structure is: languages={{ go: { code: goVar }, ts: { code: tsVar } }} - const attrValue = languagesAttr.value - const estreeBody = - typeof attrValue === "object" && attrValue && "data" in attrValue - ? attrValue.data?.estree?.body?.[0] - : undefined - const languagesObj = - estreeBody && typeof estreeBody === "object" && "expression" in estreeBody - ? (estreeBody.expression as { properties?: unknown })?.properties - : undefined - - if (languagesObj) { - for (const langProp of languagesObj as Record[]) { - const langKey = - (langProp.key as { name?: string; value?: string })?.name || - (langProp.key as { name?: string; value?: string })?.value - - if (langKey === context.targetLanguage) { - const codeProperty = (langProp.value as { properties?: Record[] })?.properties?.find( - (p) => (p.key as { name?: string })?.name === "code" - ) - const codeVarName = (codeProperty?.value as { name?: string })?.name - - if (codeVarName) { - // Find the import statement for this variable - const importRegex = new RegExp(`import\\s+${codeVarName}\\s+from\\s+['"](.+?)['"]`) - const match = context.markdown.match(importRegex) - - if (match) { - const importPath = match[1].split("?")[0] // Strip "?raw" - const codeAbsPath = path.resolve(path.dirname(context.mdxAbsPath), importPath) - let codeContent = fs.readFileSync(codeAbsPath, "utf-8") - - // Strip highlighter comments - codeContent = codeContent - .split("\n") - .map((line) => line.replace(/\s*\/\/\s*highlight-(line|start|end)/, "")) - .join("\n") - - // Infer language from file extension - const fileExt = path.extname(codeAbsPath).slice(1) - const lang = fileExt || context.targetLanguage - - // Create a code block for this language - const newNodes: Node[] = [] - newNodes.push({ - type: "code", - lang, - value: codeContent.trim(), - } as Literal) - - parent.children.splice(index, 1, ...newNodes) - return index + newNodes.length - } - } - break + const languagesAttr = node.attributes?.find((attribute) => attribute.name === "languages") + const expression = ( + languagesAttr?.value as { + data?: { estree?: { body?: { expression?: EstreeNode }[] } } + } + )?.data?.estree?.body?.[0]?.expression + const requestedLanguage = context.targetLanguage?.toLowerCase() + const normalizedLanguage = + requestedLanguage === "typescript" + ? "ts" + : requestedLanguage === "golang" + ? "go" + : requestedLanguage === "ts" || requestedLanguage === "go" + ? requestedLanguage + : undefined + if (expression?.type !== "ObjectExpression") { + return dropNode(parent, index) + } + const targetLanguage = + normalizedLanguage && + (expression.properties || []).some( + (property) => + property.type === "Property" && + !property.computed && + ((property.key?.type === "Identifier" && property.key.name === normalizedLanguage) || + (property.key?.type === "Literal" && property.key.value === normalizedLanguage)) + ) + ? normalizedLanguage + : undefined + + const codeNodes: Node[] = [] + const imports = readStaticDefaultImports(context.markdown) + for (const languageProperty of expression.properties || []) { + if (languageProperty.type !== "Property" || languageProperty.computed) continue + const language = + languageProperty.key?.type === "Identifier" + ? languageProperty.key.name + : languageProperty.key?.type === "Literal" && typeof languageProperty.key.value === "string" + ? languageProperty.key.value + : undefined + if (!language || (targetLanguage && language !== targetLanguage)) continue + + const languageConfig = languageProperty.value as EstreeNode + if (languageConfig?.type !== "ObjectExpression") continue + const codeProperty = (languageConfig.properties || []).find((property) => { + if (property.type !== "Property" || property.computed) return false + return ( + (property.key?.type === "Identifier" && property.key.name === "code") || + (property.key?.type === "Literal" && property.key.value === "code") + ) + }) + const titleProperty = (languageConfig.properties || []).find((property) => { + if (property.type !== "Property" || property.computed) return false + return ( + (property.key?.type === "Identifier" && property.key.name === "title") || + (property.key?.type === "Literal" && property.key.value === "title") + ) + }) + const title = staticEstreeValue(titleProperty?.value as EstreeNode | undefined) + const codeExpression = codeProperty?.value as EstreeNode | undefined + let code: string | undefined + let codeLanguage = language + + if (codeExpression?.type === "Identifier" && codeExpression.name) { + const importPath = imports.get(codeExpression.name)?.split("?")[0] + if (importPath) { + const codePath = resolveExistingWithin( + process.cwd(), + path.resolve(path.dirname(context.mdxAbsPath), importPath) + ) + if (codePath) { + code = fs.readFileSync(codePath, "utf-8") + codeLanguage = path.extname(codePath).slice(1) || language } } + } else { + const staticCode = staticEstreeValue(codeExpression) + if (typeof staticCode === "string") code = staticCode + } + + if (code !== undefined) { + if (!targetLanguage && typeof title === "string" && title) { + codeNodes.push(headingNode(3, title)) + } + codeNodes.push({ + type: "code", + lang: codeLanguage, + value: stripHighlighterComments(code).trim(), + } as Literal) } } + + if (codeNodes.length === 0) { + return dropNode(parent, index) + } + parent.children.splice(index, 1, ...codeNodes) + return index + codeNodes.length } catch (e) { console.warn(`Failed to process CodeHighlightBlockMulti in ${context.mdxAbsPath}:`, e) + return dropNode(parent, index) } } @@ -294,45 +513,31 @@ export function handleDiv(node: MdxJsxNode, parent: Parent, index: number): numb */ export function handleAside(node: MdxJsxNode, parent: Parent, index: number, context: ComponentContext): number | void { try { - const typeAttr = node.attributes?.find((a) => a.name === "type") - const titleAttr = node.attributes?.find((a) => a.name === "title") - - const type = typeof typeAttr?.value === "string" ? typeAttr.value.toUpperCase() : "NOTE" - const title = typeof titleAttr?.value === "string" ? titleAttr.value : "" - - // Get children content - const children = (node as Parent).children || [] - - if (children.length === 0) { - return + const typeValue = staticAttribute(node, "type") + const titleValue = staticAttribute(node, "title") + if ( + typeValue === NON_STATIC || + (typeValue !== undefined && typeof typeValue !== "string") || + titleValue === NON_STATIC || + (titleValue !== undefined && typeof titleValue !== "string") + ) { + return dropNode(parent, index) } - - // Create blockquote header - const header = title ? `**${type}: ${title}**` : `**${type}**` - - // Create new nodes for blockquote - const newNodes: Node[] = [] - - // Add blockquote paragraph with header - newNodes.push({ + const type = typeof typeValue === "string" ? typeValue.toUpperCase() : "NOTE" + const title = typeof titleValue === "string" ? titleValue : "" + const header = title ? `${type}: ${title}` : type + const blockquote = { type: "blockquote", children: [ - { - type: "paragraph", - children: [{ type: "text", value: header } as Literal], - } as Parent, - { - type: "paragraph", - children: [{ type: "text", value: "" } as Literal], - } as Parent, - ...children, + paragraphNode([{ type: "strong", children: [textNode(header)] } as Parent]), + ...((node as Parent).children || []), ], - } as Parent) - - parent.children.splice(index, 1, ...newNodes) - return index + newNodes.length + } as Parent + parent.children.splice(index, 1, blockquote) + return index } catch (e) { console.warn(`Failed to process Aside in ${context.mdxAbsPath}:`, e) + return dropNode(parent, index) } } @@ -359,12 +564,13 @@ export function handleClickToZoom( if (!src) return - // Create markdown image node - parent.children[index] = { - type: "image", - url: src, - alt, - } as Literal & { url: string; alt: string } + replaceNode(node, parent, index, [ + { + type: "image", + url: src, + alt, + } as Literal & { url: string; alt: string }, + ]) } catch (e) { console.warn(`Failed to process ClickToZoom in ${context.mdxAbsPath}:`, e) } @@ -428,9 +634,10 @@ export function handleCodeSample( const possiblePaths = [publicPath, path.resolve(src), path.join(process.cwd(), "src", src)] let codeContent: string | null = null - for (const p of possiblePaths) { - if (fs.existsSync(p)) { - codeContent = fs.readFileSync(p, "utf-8") + for (const candidate of possiblePaths) { + const safePath = resolveExistingWithin(process.cwd(), candidate) + if (safePath) { + codeContent = fs.readFileSync(safePath, "utf-8") break } } @@ -466,18 +673,12 @@ export function handleCodeSample( /** * Handle Billing component - generate markdown table with CCIP network fees - * @param node - AST node * @param parent - Parent node * @param index - Index in parent's children * @param context - Component context * @returns New index or void */ -export function handleBilling( - node: MdxJsxNode, - parent: Parent, - index: number, - context: ComponentContext -): number | void { +export function handleBilling(parent: Parent, index: number, context: ComponentContext): number | void { try { // Calculate fees using the same logic as Billing.astro const lockAndUnlockAllLanes = calculateNetworkFeesForTokenMechanismDirect(TokenMechanism.LockAndUnlock, "allLanes") @@ -545,3 +746,304 @@ export function handleBilling( } as Parent } } + +export function handlePageTabs(node: MdxJsxNode, parent: Parent, index: number): number | void { + const pages = staticAttribute(node, "pages") + const showHeader = staticAttribute(node, "showHeader") + const headerTitle = staticAttribute(node, "headerTitle") + const headerDescription = staticAttribute(node, "headerDescription") + if ( + pages === NON_STATIC || + !Array.isArray(pages) || + showHeader === NON_STATIC || + (showHeader !== undefined && typeof showHeader !== "boolean") || + headerTitle === NON_STATIC || + (headerTitle !== undefined && typeof headerTitle !== "string") || + headerDescription === NON_STATIC || + (headerDescription !== undefined && typeof headerDescription !== "string") + ) { + return dropNode(parent, index) + } + + const links: { label: string; url: string }[] = [] + for (const pageOrGroup of pages) { + const group = Array.isArray(pageOrGroup) ? pageOrGroup : [pageOrGroup] + if (group.length === 0) { + return dropNode(parent, index) + } + const groupPages: { name: string; url: string }[] = [] + for (const page of group) { + if ( + !page || + Array.isArray(page) || + typeof page !== "object" || + typeof page.name !== "string" || + typeof page.url !== "string" + ) { + return dropNode(parent, index) + } + groupPages.push({ name: page.name, url: page.url }) + } + links.push({ label: groupPages.map((page) => page.name).join(" / "), url: groupPages[0].url }) + } + + const replacement: Node[] = [] + if (showHeader !== false) { + replacement.push(headingNode(2, typeof headerTitle === "string" ? headerTitle : "Guide Versions")) + if (typeof headerDescription === "string" && headerDescription) { + replacement.push(paragraphNode([textNode(headerDescription)])) + } + } + if (links.length > 0) { + replacement.push({ + type: "list", + ordered: false, + children: links.map( + ({ label, url }) => + ({ + type: "listItem", + children: [paragraphNode([linkNode(label, url)])], + }) as Parent + ), + } as Parent) + } + parent.children.splice(index, 1, ...replacement) + return index + replacement.length +} + +type SlottedElement = { node: MdxJsxNode; parent: Parent; slot: string } + +function slottedElements(node: Parent): SlottedElement[] { + const elements: SlottedElement[] = [] + const collect = (parent: Parent) => { + for (const child of parent.children || []) { + if (child.type === "mdxJsxFlowElement" || child.type === "mdxJsxTextElement") { + const slot = staticAttribute(child as MdxJsxNode, "slot") + if (typeof slot === "string") elements.push({ node: child as MdxJsxNode, parent, slot }) + continue + } + if ((child as Parent).children) collect(child as Parent) + } + } + collect(node) + return elements +} + +export function handleTabs(node: MdxJsxNode, parent: Parent, index: number): number | void { + const tabs: { key: string; label: string }[] = [] + const panels = new Map() + + for (const { node: child, slot } of slottedElements(node as Parent)) { + if (slot.startsWith("tab.")) { + const label = staticChildrenText(child as Parent) + if (label !== NON_STATIC && label) tabs.push({ key: slot.slice(4), label }) + } else if (slot.startsWith("panel.")) { + panels.set(slot.slice(6), (child as Parent).children || []) + } + } + + const replacement: Node[] = [] + for (const tab of tabs) { + const panel = panels.get(tab.key) + if (!panel) continue + replacement.push(headingNode(3, tab.label), ...panel) + } + if (replacement.length === 0) { + return replaceNode(node, parent, index, (node as Parent).children || []) + } + return replaceNode(node, parent, index, replacement) +} + +export function handlePackageManagerTabs(node: MdxJsxNode, parent: Parent, index: number): number | void { + const slots = slottedElements(node as Parent) + const replacement: Node[] = [] + for (const manager of ["npm", "yarn"]) { + const content = slots.find(({ slot }) => slot === manager)?.node as Parent | undefined + if (content) replacement.push(headingNode(3, manager), ...(content.children || [])) + } + if (replacement.length === 0) { + return replaceNode(node, parent, index, (node as Parent).children || []) + } + return replaceNode(node, parent, index, replacement) +} + +export function handleFragment(node: MdxJsxNode, parent: Parent, index: number): number | void { + return replaceNode(node, parent, index, (node as Parent).children || []) +} + +export function handleAccordion(node: MdxJsxNode, parent: Parent, index: number): number | void { + const title = staticAttribute(node, "title") + const number = staticAttribute(node, "number") + const depth = staticAttribute(node, "depth") + const titleSlot = slottedElements(node as Parent).find(({ slot }) => slot === "title") + const slotTitle = titleSlot ? staticChildrenText(titleSlot.node as Parent) : undefined + if ( + title === NON_STATIC || + typeof title !== "string" || + number === NON_STATIC || + (number !== undefined && typeof number !== "number") || + slotTitle === NON_STATIC || + (titleSlot && !slotTitle) + ) { + return dropNode(parent, index) + } + if (titleSlot) { + titleSlot.parent.children.splice(titleSlot.parent.children.indexOf(titleSlot.node), 1) + } + const label = `${typeof number === "number" ? `${number}. ` : ""}${slotTitle || title}` + const replacement: Node[] = [headingNode(depth === 4 ? 4 : 3, label), ...((node as Parent).children || [])] + return replaceNode(node, parent, index, replacement) +} + +export function handleAddress(node: MdxJsxNode, parent: Parent, index: number): number | void { + const contractUrl = staticAttribute(node, "contractUrl") + const address = staticAttribute(node, "address") + const endLength = staticAttribute(node, "endLength") + if ( + contractUrl === NON_STATIC || + typeof contractUrl !== "string" || + address === NON_STATIC || + (address !== undefined && typeof address !== "string") || + endLength === NON_STATIC || + (endLength !== undefined && (typeof endLength !== "number" || !Number.isInteger(endLength) || endLength < 0)) + ) { + return dropNode(parent, index) + } + + const value = typeof address === "string" && address ? address : contractUrl.split("/").pop() || contractUrl + const display = + typeof endLength === "number" && endLength > 0 + ? `${value.slice(0, endLength + 2)}...${value.slice(-endLength)}` + : value + replaceNode(node, parent, index, [linkNode(display, contractUrl)]) +} + +export function handleCallout( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + return handleAside(node, parent, index, context) +} + +const SELECTOR_COMPONENTS = { + AnyApiCallout: { astro: "src/features/any-api/common/AnyApiCallout.astro", attribute: "callout" }, + FeedsCommonCallout: { astro: "src/features/feeds/callouts/FeedsCommonCallout.astro", attribute: "callout" }, + ResourcesCallout: { astro: "src/features/resources/callouts/ResourcesCallout.astro", attribute: "callout" }, + DataStreams: { astro: "src/features/data-streams/common/DataStreams.astro", attribute: "section" }, +} as const + +function handleAstroSelector( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext, + componentName: keyof typeof SELECTOR_COMPONENTS +): number | void { + const config = SELECTOR_COMPONENTS[componentName] + const selector = staticAttribute(node, config.attribute) + if (typeof selector !== "string") { + return dropNode(parent, index) + } + + try { + const astroPath = resolveExistingWithin(process.cwd(), config.astro) + if (!astroPath) { + return dropNode(parent, index) + } + const astroDirectory = path.dirname(astroPath) + const source = fs.readFileSync(astroPath, "utf-8") + const imports = readStaticDefaultImports(source) + const conditions = readStaticJsxSelectorConditions(source, config.attribute) + + const importPath = imports.get(conditions.get(selector) || "") + const markdownPath = importPath && resolveExistingWithin(astroDirectory, importPath) + if (!markdownPath || path.extname(markdownPath) !== ".mdx") { + return dropNode(parent, index) + } + const markdown = removeLeadingMdxFrontmatter(fs.readFileSync(markdownPath, "utf-8")) + const tree = context.processor.parse(markdown) as Parent + parent.children.splice(index, 1, ...(tree.children || [])) + return index + } catch (e) { + console.warn(`Failed to process ${componentName} in ${context.mdxAbsPath}:`, e) + return dropNode(parent, index) + } +} + +export function handleAnyApiCallout( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + return handleAstroSelector(node, parent, index, context, "AnyApiCallout") +} + +export function handleFeedsCommonCallout( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + return handleAstroSelector(node, parent, index, context, "FeedsCommonCallout") +} + +export function handleResourcesCallout( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + return handleAstroSelector(node, parent, index, context, "ResourcesCallout") +} + +export function handleDataStreams( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + return handleAstroSelector(node, parent, index, context, "DataStreams") +} + +function escapeTableCell(value: string): string { + return value.replace(/\\/g, "\\\\").replace(/\|/g, "\\|").replace(/\r?\n/g, " ") +} + +export function handleSchemaFieldsTable( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + const schema = staticAttribute(node, "schema") + const definition = typeof schema === "string" ? REPORT_SCHEMA_DEFINITIONS[schema] : undefined + if (!definition) { + return dropNode(parent, index) + } + const rows = [ + "| Field | Type | Description |", + "| --- | --- | --- |", + ...definition.fields.map((field) => { + const description = `${field.description}${field.link ? ` — [${field.link.label}](${field.link.href})` : ""}` + return `| \`${escapeTableCell(field.field)}\` | \`${escapeTableCell(field.type)}\` | ${escapeTableCell(description)} |` + }), + ] + const tree = context.processor.parse(rows.join("\n")) as Parent + parent.children.splice(index, 1, ...(tree.children || [])) + return index + (tree.children?.length || 0) +} + +export function handleFeedPage( + node: MdxJsxNode, + parent: Parent, + index: number, + context: ComponentContext +): number | void { + const tree = context.processor.parse( + "Live values such as feed contract addresses are not inlined here. Wait for the official API to obtain current data." + ) as Parent + return replaceNode(node, parent, index, tree.children || []) +} diff --git a/src/lib/markdown/index.ts b/src/lib/markdown/index.ts index f3342c8a4fa..a3aee687eb9 100644 --- a/src/lib/markdown/index.ts +++ b/src/lib/markdown/index.ts @@ -4,3 +4,4 @@ */ export * from "./formatters.js" +export type { MarkdownArtifact } from "./types.js" diff --git a/src/lib/markdown/sourceScanners.ts b/src/lib/markdown/sourceScanners.ts new file mode 100644 index 00000000000..71c8488f208 --- /dev/null +++ b/src/lib/markdown/sourceScanners.ts @@ -0,0 +1,190 @@ +const HIGHLIGHTER_MARKERS = ["highlight-line", "highlight-start", "highlight-end"] as const + +function isWhitespace(code: number): boolean { + return code === 9 || code === 10 || code === 11 || code === 12 || code === 13 || code === 32 +} + +function isIdentifierStart(code: number): boolean { + return code === 36 || code === 95 || (code >= 65 && code <= 90) || (code >= 97 && code <= 122) +} + +function isIdentifierPart(code: number): boolean { + return isIdentifierStart(code) || (code >= 48 && code <= 57) +} + +function skipWhitespace(source: string, cursor: number): number { + while (cursor < source.length && isWhitespace(source.charCodeAt(cursor))) cursor += 1 + return cursor +} + +function findIdentifierToken(source: string, token: string, cursor: number): number { + while (cursor < source.length) { + const start = source.indexOf(token, cursor) + if (start < 0) return -1 + const end = start + token.length + if ( + (start === 0 || !isIdentifierPart(source.charCodeAt(start - 1))) && + (end === source.length || !isIdentifierPart(source.charCodeAt(end))) + ) { + return start + } + cursor = end + } + return -1 +} + +function readIdentifier(source: string, cursor: number): { value: string; end: number } | undefined { + if (!isIdentifierStart(source.charCodeAt(cursor))) return + const start = cursor + cursor += 1 + while (cursor < source.length && isIdentifierPart(source.charCodeAt(cursor))) cursor += 1 + return { value: source.slice(start, cursor), end: cursor } +} + +function quotedEndOnLine(source: string, cursor: number, quote: number): number { + while (cursor < source.length && source.charCodeAt(cursor) !== 10) { + if (source.charCodeAt(cursor) === quote) return cursor + cursor += 1 + } + return -1 +} + +export function readStaticDefaultImports(source: string): Map { + const imports = new Map() + let cursor = 0 + + while (cursor < source.length) { + const start = findIdentifierToken(source, "import", cursor) + if (start < 0) break + cursor = start + "import".length + if (!isWhitespace(source.charCodeAt(cursor))) continue + + cursor = skipWhitespace(source, cursor) + const identifier = readIdentifier(source, cursor) + if (!identifier) continue + cursor = identifier.end + if (!isWhitespace(source.charCodeAt(cursor))) continue + + cursor = skipWhitespace(source, cursor) + if (!source.startsWith("from", cursor) || isIdentifierPart(source.charCodeAt(cursor + "from".length))) { + continue + } + cursor += "from".length + if (!isWhitespace(source.charCodeAt(cursor))) continue + + cursor = skipWhitespace(source, cursor) + const quote = source.charCodeAt(cursor) + if (quote !== 34 && quote !== 39) continue + cursor += 1 + const end = quotedEndOnLine(source, cursor, quote) + if (end < 0) { + const lineEnd = source.indexOf("\n", cursor) + cursor = lineEnd < 0 ? source.length : lineEnd + 1 + continue + } + if (end > cursor) imports.set(identifier.value, source.slice(cursor, end)) + cursor = end + 1 + } + + return imports +} + +export function readStaticJsxSelectorConditions(source: string, attribute: string): Map { + const conditions = new Map() + if (attribute.length === 0) return conditions + let cursor = 0 + + while (cursor < source.length) { + const start = findIdentifierToken(source, attribute, cursor) + if (start < 0) break + cursor = start + attribute.length + cursor = skipWhitespace(source, cursor) + if (!source.startsWith("===", cursor)) continue + + cursor += 3 + cursor = skipWhitespace(source, cursor) + const quote = source.charCodeAt(cursor) + if (quote !== 34 && quote !== 39) continue + cursor += 1 + const selectorEnd = quotedEndOnLine(source, cursor, quote) + if (selectorEnd < 0) { + const lineEnd = source.indexOf("\n", cursor) + cursor = lineEnd < 0 ? source.length : lineEnd + 1 + continue + } + const selector = source.slice(cursor, selectorEnd) + cursor = skipWhitespace(source, selectorEnd + 1) + if (!source.startsWith("&&", cursor)) continue + + cursor += 2 + cursor = skipWhitespace(source, cursor) + if (source.charCodeAt(cursor) !== 60) continue + cursor += 1 + const component = readIdentifier(source, cursor) + if (!component) continue + cursor = component.end + if (selector.length > 0) conditions.set(selector, component.value) + } + + return conditions +} + +function isFenceLine(source: string, start: number, end: number): boolean { + if (source.charCodeAt(start) !== 45 || source.charCodeAt(start + 1) !== 45 || source.charCodeAt(start + 2) !== 45) { + return false + } + for (let cursor = start + 3; cursor < end; cursor += 1) { + if (!isWhitespace(source.charCodeAt(cursor))) return false + } + return true +} + +export function removeLeadingMdxFrontmatter(source: string): string { + const firstLineEnd = source.indexOf("\n") + if (firstLineEnd < 0 || !isFenceLine(source, 0, firstLineEnd)) return source + + let cursor = firstLineEnd + 1 + while (cursor < source.length) { + const lineEnd = source.indexOf("\n", cursor) + if (lineEnd < 0) return source + if (isFenceLine(source, cursor, lineEnd)) return source.slice(lineEnd + 1) + cursor = lineEnd + 1 + } + return source +} + +function highlighterMarkerLength(line: string, cursor: number): number { + for (const marker of HIGHLIGHTER_MARKERS) { + if (line.startsWith(marker, cursor)) return marker.length + } + return 0 +} + +function stripHighlighterCommentLine(line: string): string { + let cursor = 0 + let whitespaceStart = 0 + + while (cursor < line.length) { + if (isWhitespace(line.charCodeAt(cursor))) { + cursor += 1 + continue + } + if (line.charCodeAt(cursor) === 47 && line.charCodeAt(cursor + 1) === 47) { + const markerStart = skipWhitespace(line, cursor + 2) + const markerLength = highlighterMarkerLength(line, markerStart) + if (markerLength > 0) { + return line.slice(0, whitespaceStart) + line.slice(markerStart + markerLength) + } + } + cursor += 1 + whitespaceStart = cursor + } + + return line +} + +export function stripHighlighterComments(code: string): string { + const chunks: string[] = [] + for (const line of code.split("\n")) chunks.push(stripHighlighterCommentLine(line)) + return chunks.join("\n") +} diff --git a/src/lib/markdown/transformMarkdown.ts b/src/lib/markdown/transformMarkdown.ts index 58c20f5da64..7b1930b79f5 100644 --- a/src/lib/markdown/transformMarkdown.ts +++ b/src/lib/markdown/transformMarkdown.ts @@ -20,63 +20,38 @@ import { handleClickToZoom, handleCodeSample, handleBilling, + handlePageTabs, + handleTabs, + handlePackageManagerTabs, + handleFragment, + handleAccordion, + handleAddress, + handleCallout, + handleAnyApiCallout, + handleFeedsCommonCallout, + handleResourcesCallout, + handleDataStreams, + handleSchemaFieldsTable, + handleFeedPage, loadCcipCommonMapping, + replaceNode, + staticEstreeValue, } from "./componentHandlers.js" import fs from "fs" import path from "path" - -/** - * Convert Aside components to markdown blockquotes - * Handles multi-line Aside tags by converting them to blockquote format - * Preserves Asides with nested JSX components (they'll be handled by AST or remain as-is) - * @param content - Markdown content that may contain Aside components - * @returns Content with simple Aside tags converted to blockquotes - */ -function convertAsidesToBlockquotes(content: string): string { - // Match multi-line Aside components - const asideRegex = /([\s\S]*?)<\/Aside>/g - - return content.replace(asideRegex, (fullMatch, type, title, children) => { - // Check if the Aside contains other JSX components (like Tabs, CopyText, etc.) - const hasJSXComponents = /<[A-Z]\w+/.test(children) - - if (hasJSXComponents) { - // Keep as-is - these complex nested structures need manual handling - // or will be dropped by the AST handlers - return fullMatch - } - - // Create a blockquote directly in markdown format - // This avoids JSX parsing issues entirely - const cleanChildren = children.trim() - const asideType = type.toUpperCase() - const header = title ? `**${asideType}: ${title}**` : `**${asideType}**` - - // Return as markdown blockquote - return `\n\n> ${header}\n>\n> ${cleanChildren}\n\n` - }) -} - -/** - * Convert ClickToZoom components to markdown images - * Handles self-closing ClickToZoom tags by converting to standard markdown image syntax - * @param content - Markdown content that may contain ClickToZoom components - * @returns Content with ClickToZoom tags converted to markdown images - */ -function convertClickToZoomToImages(content: string): string { - // Match self-closing ClickToZoom tags with any attributes - // Captures src and alt, ignores other attributes like style - const clickToZoomRegex = /]*src="([^"]+)"[^>]*(?:alt="([^"]*)")?[^>]*\/>/g - - return content.replace(clickToZoomRegex, (_, src, alt) => { - const altText = alt || "Image" - return `![${altText}](${src})` - }) +import { removeLeadingMdxFrontmatter } from "./sourceScanners.js" + +function staticMdxString(value: unknown): string | undefined { + const expression = ( + value as { data?: { estree?: { body?: { expression?: Parameters[0] }[] } } } | undefined + )?.data?.estree?.body?.[0]?.expression + const staticValue = staticEstreeValue(expression) + return typeof staticValue === "string" ? staticValue : undefined } /** * Preprocess CcipCommon components by inlining their content - * This is essential because remarkMdx doesn't always parse self-closing JSX tags properly + * Inlined MDX components continue through the normal remark AST visitor * @param markdown - Raw markdown content * @returns Markdown with CcipCommon components replaced by their content */ @@ -90,22 +65,24 @@ function preprocessCcipCommon(markdown: string): string { const fileName = calloutFileMap[calloutName] if (fileName) { - const calloutPath = path.resolve("src/features/ccip", fileName) - if (fs.existsSync(calloutPath)) { + let calloutPath: string | undefined + try { + const ccipRoot = fs.realpathSync(path.resolve("src/features/ccip")) + const candidate = fs.realpathSync(path.resolve(ccipRoot, fileName)) + if (candidate === ccipRoot || candidate.startsWith(ccipRoot + path.sep)) calloutPath = candidate + } catch { + // Missing or escaping selector targets remain unexpanded and are dropped by the AST visitor. + } + if (calloutPath) { let calloutContent = fs.readFileSync(calloutPath, "utf-8") // Strip frontmatter if present - if (calloutContent.trim().startsWith("---")) { - calloutContent = calloutContent.replace(/^---\s*\n[\s\S]*?\n---\s*\n/, "") - } + calloutContent = removeLeadingMdxFrontmatter(calloutContent) // Strip import statements calloutContent = calloutContent.replace(/^import\s+.+$/gm, "").trim() - // Convert Aside components to blockquotes - calloutContent = convertAsidesToBlockquotes(calloutContent) - - // Replace the CcipCommon tag with the processed content + // Replace the CcipCommon tag with the inlined content preprocessedMarkdown = preprocessedMarkdown.replace(fullMatch, "\n\n" + calloutContent + "\n\n") } } @@ -128,18 +105,8 @@ export async function transformMarkdown( ): Promise { const { targetLanguage } = config - // Preprocessing pipeline - apply transformations before AST parsing - // This handles components that remarkMdx struggles to parse (multi-line JSX) - - // Step 1: Preprocess CcipCommon components (inline callout content) - let preprocessedMarkdown = preprocessCcipCommon(markdown) - - // Step 2: Convert Aside components to markdown blockquotes - // Applies to both main content and inlined CcipCommon content - preprocessedMarkdown = convertAsidesToBlockquotes(preprocessedMarkdown) - - // Step 3: Convert ClickToZoom to markdown images - preprocessedMarkdown = convertClickToZoomToImages(preprocessedMarkdown) + // Inline CcipCommon content before AST parsing so embedded components reach the normal AST handlers. + const preprocessedMarkdown = preprocessCcipCommon(markdown) // Create unified processor with remark plugins const processor = unified() @@ -179,7 +146,10 @@ export async function transformMarkdown( } // Handle ClickToZoom - if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "ClickToZoom") { + if ( + (node.type === "mdxJsxFlowElement" || node.type === "mdxJsxTextElement") && + (node as MdxJsxNode).name === "ClickToZoom" + ) { return handleClickToZoom(node as MdxJsxNode, parent, index, context) } @@ -190,7 +160,68 @@ export async function transformMarkdown( // Handle Billing if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "Billing") { - return handleBilling(node as MdxJsxNode, parent, index, context) + return handleBilling(parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "PageTabs") { + return handlePageTabs(node as MdxJsxNode, parent, index) + } + + if ( + node.type === "mdxJsxFlowElement" && + ((node as MdxJsxNode).name === "Tabs" || (node as MdxJsxNode).name === "TabsContent") + ) { + return handleTabs(node as MdxJsxNode, parent, index) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "PackageManagerTabs") { + return handlePackageManagerTabs(node as MdxJsxNode, parent, index) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "Accordion") { + return handleAccordion(node as MdxJsxNode, parent, index) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "Callout") { + return handleCallout(node as MdxJsxNode, parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "AnyApiCallout") { + return handleAnyApiCallout(node as MdxJsxNode, parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "FeedsCommonCallout") { + return handleFeedsCommonCallout(node as MdxJsxNode, parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "ResourcesCallout") { + return handleResourcesCallout(node as MdxJsxNode, parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "DataStreams") { + return handleDataStreams(node as MdxJsxNode, parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "SchemaFieldsTable") { + return handleSchemaFieldsTable(node as MdxJsxNode, parent, index, context) + } + + if (node.type === "mdxJsxFlowElement" && (node as MdxJsxNode).name === "FeedPage") { + return handleFeedPage(node as MdxJsxNode, parent, index, context) + } + + if ( + (node.type === "mdxJsxFlowElement" || node.type === "mdxJsxTextElement") && + (node as MdxJsxNode).name === "Address" + ) { + return handleAddress(node as MdxJsxNode, parent, index) + } + + if ( + (node.type === "mdxJsxFlowElement" || node.type === "mdxJsxTextElement") && + (node as MdxJsxNode).name === "Fragment" + ) { + return handleFragment(node as MdxJsxNode, parent, index) } // Handle MDX JSX text elements @@ -208,42 +239,116 @@ export async function transformMarkdown( } } - // Drop MDX/import/export nodes (except handled components) + if (node.type === "mdxJsxFlowElement" || node.type === "mdxJsxTextElement") { + const mdxNode = node as MdxJsxNode + const nodeName = mdxNode.name + const children = (mdxNode as Parent).children || [] + + if (nodeName === "a") { + const hrefAttribute = mdxNode.attributes?.find((attribute) => attribute.name === "href") + const href = + typeof hrefAttribute?.value === "string" ? hrefAttribute.value : staticMdxString(hrefAttribute?.value) + if (href !== undefined) { + return replaceNode(mdxNode, parent, index, [ + { type: "link", url: href, children } as Parent & { url: string }, + ]) + } + return replaceNode(mdxNode, parent, index, children) + } + + if (nodeName === "code") { + let value = "" + for (const child of children) { + if (child.type === "text") value += String((child as Literal).value) + else if (child.type === "mdxTextExpression" || child.type === "mdxFlowExpression") { + value += staticMdxString(child) ?? "" + } + } + return replaceNode(mdxNode, parent, index, [{ type: "inlineCode", value } as Literal]) + } + + if (nodeName === "b" || nodeName === "strong") { + return replaceNode(mdxNode, parent, index, [{ type: "strong", children } as Parent]) + } + + if (nodeName === "ul") { + const replacement: Node[] = [] + let listItemCount = 0 + for (const child of children) { + if ( + (child.type === "mdxJsxFlowElement" || child.type === "mdxJsxTextElement") && + (child as MdxJsxNode).name === "li" + ) { + if (listItemCount > 0) replacement.push({ type: "text", value: "; " } as Literal) + replacement.push(...((child as Parent).children || [])) + listItemCount++ + } else if (child.type !== "text" || String((child as Literal).value).trim()) { + replacement.push(child) + } + } + return replaceNode(mdxNode, parent, index, replacement) + } + + // ponytail: unwrap HTML tables to text; emit markdown tables if agents need grid structure + if ( + nodeName === "li" || + nodeName === "sub" || + nodeName === "span" || + nodeName === "p" || + nodeName === "div" || + nodeName === "table" || + nodeName === "thead" || + nodeName === "tbody" || + nodeName === "tr" || + nodeName === "th" || + nodeName === "td" || + ((nodeName === "br" || nodeName === "nobr") && children.length > 0) + ) { + return replaceNode(mdxNode, parent, index, children) + } + + if (nodeName === "br" || nodeName === "nobr") { + parent.children.splice(index, 1) + return index + } + } + + if (node.type === "mdxFlowExpression" || node.type === "mdxTextExpression") { + const value = staticMdxString(node) + if (value === undefined) return replaceNode(node, parent, index, []) + if (node.type === "mdxFlowExpression" && !value.trim()) return replaceNode(node, parent, index, []) + return replaceNode(node, parent, index, [{ type: "text", value } as Literal]) + } + + // Drop MDX/import/export nodes except the explicitly projected component names above. if ( - (node.type === "mdxJsxFlowElement" && + ((node.type === "mdxJsxFlowElement" || node.type === "mdxJsxTextElement") && (node as MdxJsxNode).name !== "Aside" && (node as MdxJsxNode).name !== "CcipCommon" && (node as MdxJsxNode).name !== "ClickToZoom" && (node as MdxJsxNode).name !== "CodeSample" && - (node as MdxJsxNode).name !== "Billing") || + (node as MdxJsxNode).name !== "Billing" && + (node as MdxJsxNode).name !== "PageTabs" && + (node as MdxJsxNode).name !== "Tabs" && + (node as MdxJsxNode).name !== "TabsContent" && + (node as MdxJsxNode).name !== "PackageManagerTabs" && + (node as MdxJsxNode).name !== "Fragment" && + (node as MdxJsxNode).name !== "Accordion" && + (node as MdxJsxNode).name !== "Address" && + (node as MdxJsxNode).name !== "Callout" && + (node as MdxJsxNode).name !== "AnyApiCallout" && + (node as MdxJsxNode).name !== "FeedsCommonCallout" && + (node as MdxJsxNode).name !== "ResourcesCallout" && + (node as MdxJsxNode).name !== "DataStreams" && + (node as MdxJsxNode).name !== "SchemaFieldsTable" && + (node as MdxJsxNode).name !== "FeedPage") || node.type === "mdxjsEsm" || node.type === "import" || - node.type === "export" - ) { - parent.children.splice(index, 1) - return - } - - // Handle HTML nodes - drop them - if (node.type === "html") { - parent.children.splice(index, 1) - return - } - - // Handle JSX comments - drop them - if ( - (node.type === "mdxFlowExpression" || node.type === "mdxTextExpression") && - typeof (node as { value?: string }).value === "string" && - (node as { value?: string }).value?.trim().match(/^\/\*[\s\S]*?\*\/$/) + node.type === "export" || + node.type === "html" ) { parent.children.splice(index, 1) - return - } - - // Replace images with their alt text - if (node.type === "image") { - const alt = (node as { alt?: string }).alt ? String((node as { alt?: string }).alt) : "Image" - parent.children[index] = { type: "text", value: `(Image: ${alt})` } as Literal + return index } // Note: We preserve link nodes as-is so they're rendered as markdown links [text](url) diff --git a/src/lib/markdown/types.ts b/src/lib/markdown/types.ts index 5362f96a33f..9548b2d5f59 100644 --- a/src/lib/markdown/types.ts +++ b/src/lib/markdown/types.ts @@ -110,3 +110,11 @@ export interface CodeBlock { /** Optional title */ title?: string } + +export type MarkdownArtifact = { + requestPath: string + routeKind: "normal" | "special" | "selector" | "redirect" + transformMode: "normal" | "sanitized" | "fallback" | "replacement" + sourcePath?: string + markdown: string +} diff --git a/src/pages/[...path].md.ts b/src/pages/[...path].md.ts index 1b4d916d93d..3c879aa92fd 100644 --- a/src/pages/[...path].md.ts +++ b/src/pages/[...path].md.ts @@ -1,29 +1,6 @@ import type { APIRoute } from "astro" -import fs from "node:fs/promises" -import path from "node:path" import { textPlainHeaders } from "@lib/api/cacheHeaders.js" -import { transformPageToMarkdown } from "@lib/markdown/transformMarkdown.js" -import { extractFrontmatter, getIsoStringOrUndefined, toCanonicalUrl, toContentRelative } from "@lib/markdown/utils.js" - -const SITE_BASE = "https://docs.chain.link" -const CONTENT_ROOT = path.resolve("src/content") - -const LLMS_DIRECTIVE = "> For the complete documentation index, see [llms.txt](/llms.txt)." - -const MARKDOWN_REDIRECTS: Record = { - "ccip/tutorials/cross-chain-tokens": "ccip/tutorials/evm/cross-chain-tokens", - - // Data Streams - "data-streams/getting-started": "data-streams/tutorials/streams-trade/getting-started", - "data-streams/getting-started-hardhat": "data-streams/tutorials/streams-trade/getting-started-hardhat", - "data-streams/reference/streams-direct/streams-direct-onchain-verification": - "data-streams/reference/onchain-verification", - - // Newly surfaced redirects - "chainlink-functions/resources/concepts": "chainlink-functions/resources", - "cre/getting-started/conclusion": "cre/getting-started", - "data-streams/reference/streams-direct/streams-direct-interface-ws": "data-streams/reference/interface-ws", -} +import { buildMarkdownArtifact } from "@lib/markdown/buildMarkdownArtifact.js" const markdownHeaders = { ...textPlainHeaders, @@ -33,296 +10,19 @@ const markdownHeaders = { export const prerender = false export const GET: APIRoute = async ({ params, request }) => { - const cleanPath = normalizeMarkdownPath(params.path) - - if (!cleanPath) { + const requestPath = params.path + if (!requestPath) { return new Response("Page not found.", { status: 404 }) } - const specialResolution = await resolveSpecialCanonicalMarkdownPath(cleanPath) - if (specialResolution) { - return buildMarkdownResponseFromPath(specialResolution.resolvedPath, request, specialResolution.sourceCanonicalPath) - } - - const creResolution = await resolveCreCanonicalMarkdownPath(cleanPath) - - if (creResolution.kind === "selector") { - return new Response(buildCreSelectorMarkdown(cleanPath, creResolution), { - status: 200, - headers: markdownHeaders, - }) - } - - const resolvedPath = creResolution.kind === "resolved" ? creResolution.path : cleanPath - return buildMarkdownResponseFromPath(resolvedPath, request) -} - -type SpecialResolution = { - resolvedPath: string - sourceCanonicalPath: string -} - -async function resolveSpecialCanonicalMarkdownPath(cleanPath: string): Promise { - const specialPathMap: Record = { - "cre-templates": "cre/templates", - } - - const mappedPath = specialPathMap[cleanPath] - if (!mappedPath) return null - - const file = await findContentFile(mappedPath) - if (!file) return null - - return { - resolvedPath: mappedPath, - sourceCanonicalPath: cleanPath, - } -} - -type CreResolution = - { kind: "none" } | { kind: "resolved"; path: string } | { kind: "selector"; goPath: string; tsPath: string } - -async function resolveCreCanonicalMarkdownPath(cleanPath: string): Promise { - if (!cleanPath.startsWith("cre/")) { - return { kind: "none" } - } - - const direct = await findContentFile(cleanPath) - if (direct) { - return { kind: "resolved", path: cleanPath } - } - - const goPath = `${cleanPath}-go` - const tsPath = `${cleanPath}-ts` - - const [goFile, tsFile] = await Promise.all([findContentFile(goPath), findContentFile(tsPath)]) - - if (goFile && tsFile) { - return { kind: "selector", goPath, tsPath } - } - - if (goFile) { - return { kind: "resolved", path: goPath } - } - - if (tsFile) { - return { kind: "resolved", path: tsPath } - } - - return { kind: "none" } -} - -async function buildMarkdownResponseFromPath( - resolvedPath: string, - request: Request, - sourceCanonicalPathOverride?: string -): Promise { - const redirectTarget = MARKDOWN_REDIRECTS[resolvedPath] - - if (redirectTarget) { - return buildMarkdownMovedResponse(resolvedPath, redirectTarget) - } - - const mdxAbsPath = await findContentFile(resolvedPath) - - if (!mdxAbsPath) { + const lang = new URL(request.url).searchParams.get("lang") || undefined + const artifact = await buildMarkdownArtifact(requestPath, { lang }) + if (!artifact) { return new Response("Page not found.", { status: 404 }) } - const url = new URL(request.url) - const targetLanguage = url.searchParams.get("lang") || undefined - - const raw = await fs.readFile(mdxAbsPath, "utf-8") - const { body, fmTitle, fmLastModified } = extractFrontmatter(raw) - - const section = resolvedPath.split("/")[0] - - const transformed = await transformPageBodyToMarkdown(body, mdxAbsPath, { - siteBase: SITE_BASE, - targetLanguage, - }) - - const relFromContent = toContentRelative(mdxAbsPath) - const derivedSourceUrl = toCanonicalUrl(section, relFromContent, SITE_BASE) - const sourceUrl = sourceCanonicalPathOverride ? `${SITE_BASE}/${sourceCanonicalPathOverride}` : derivedSourceUrl - - const title = fmTitle || path.basename(mdxAbsPath, path.extname(mdxAbsPath)) - const lastModified = getIsoStringOrUndefined(fmLastModified) - - const headerLines = [ - `# ${title}`, - `Source: ${sourceUrl}`, - ...(lastModified ? [`Last Updated: ${lastModified}`] : []), - "", - LLMS_DIRECTIVE, - "", - ] - - return new Response([...headerLines, transformed.trim()].join("\n"), { + return new Response(artifact.markdown, { status: 200, headers: markdownHeaders, }) } - -async function transformPageBodyToMarkdown( - body: string, - mdxAbsPath: string, - options: { - siteBase: string - targetLanguage?: string - } -): Promise { - // Targeted fix for problematic page - if (mdxAbsPath.includes("data-feeds/deprecating-feeds")) { - return ` -## Deprecated Feeds - -This page contains dynamically generated or component-heavy content. - -For the full and most up-to-date information, see: -https://docs.chain.link/data-feeds/deprecating-feeds -`.trim() - } - - try { - return await transformPageToMarkdown(body, mdxAbsPath, options) - } catch { - const sanitizedBody = stripRuntimeMdxSyntax(body) - - try { - return await transformPageToMarkdown(sanitizedBody, mdxAbsPath, options) - } catch { - return buildFallbackMarkdownBody(sanitizedBody) - } - } -} - -function buildFallbackMarkdownBody(body: string): string { - return stripRuntimeMdxSyntax(body) - .replace(/<([A-Z][A-Za-z0-9]*)\b[^>]*\/>/g, "") - .replace(/<([A-Z][A-Za-z0-9]*)\b[^>]*>/g, "") - .replace(/<\/[A-Z][A-Za-z0-9]*>/g, "") - .trim() -} - -function stripRuntimeMdxSyntax(body: string): string { - const lines = body.split("\n") - const output: string[] = [] - - let skippingExportBlock = false - let skippingImportBlock = false - let braceDepth = 0 - - for (const line of lines) { - const trimmed = line.trim() - - if (skippingImportBlock) { - if (trimmed.includes(" from ") || trimmed.endsWith('"') || trimmed.endsWith("'")) { - skippingImportBlock = false - } - continue - } - - if (skippingExportBlock) { - braceDepth += countChar(line, "{") - braceDepth -= countChar(line, "}") - - if (braceDepth <= 0) { - skippingExportBlock = false - braceDepth = 0 - } - continue - } - - if (/^import\s+/.test(trimmed)) { - if (!trimmed.includes(" from ")) skippingImportBlock = true - continue - } - - if (/^export\s+(async\s+)?function\s+/.test(trimmed)) { - skippingExportBlock = true - braceDepth = countChar(line, "{") - countChar(line, "}") - continue - } - - if (/^export\s+(const|let|var)\s+/.test(trimmed)) { - continue - } - - output.push(line) - } - - return output.join("\n") -} - -function countChar(value: string, char: string): number { - return value.split(char).length - 1 -} - -function normalizeMarkdownPath(pathParam: string | undefined): string | null { - if (!pathParam) return null - - const cleanPath = pathParam.replace(/\.md$/i, "").replace(/^\/+/, "").replace(/\/+$/, "") - - if (!cleanPath) return null - - const segments = cleanPath.split("/") - if (segments.some((segment) => segment === ".." || segment === "." || segment === "")) { - return null - } - - return cleanPath -} - -async function findContentFile(cleanPath: string): Promise { - const possiblePaths = [ - path.resolve(CONTENT_ROOT, `${cleanPath}.mdx`), - path.resolve(CONTENT_ROOT, cleanPath, "index.mdx"), - path.resolve(CONTENT_ROOT, `${cleanPath}.md`), - path.resolve(CONTENT_ROOT, cleanPath, "index.md"), - ] - - for (const candidate of possiblePaths) { - if (!candidate.startsWith(`${CONTENT_ROOT}${path.sep}`)) continue - try { - await fs.access(candidate) - return candidate - } catch {} - } - - return null -} - -function buildMarkdownMovedResponse(sourcePath: string, targetPath: string): Response { - const sourceUrl = `${SITE_BASE}/${sourcePath}` - const targetUrl = `/${targetPath}.md` - - return new Response( - [ - `# Redirect`, - `Source: ${sourceUrl}`, - "", - LLMS_DIRECTIVE, - "", - "This page has moved.", - "", - `Use the current documentation: [${targetPath}](${targetUrl}).`, - "", - ].join("\n"), - { status: 200, headers: markdownHeaders } - ) -} - -function buildCreSelectorMarkdown(canonicalPath: string, resolution: any): string { - const canonicalUrl = `${SITE_BASE}/${canonicalPath}` - return [ - `# ${canonicalPath}`, - `Source: ${canonicalUrl}`, - "", - LLMS_DIRECTIVE, - "", - `- Go: /${resolution.goPath}.md`, - `- TypeScript: /${resolution.tsPath}.md`, - "", - ].join("\n") -} diff --git a/src/scripts/check-markdown-fidelity.test.ts b/src/scripts/check-markdown-fidelity.test.ts new file mode 100644 index 00000000000..de3533f77aa --- /dev/null +++ b/src/scripts/check-markdown-fidelity.test.ts @@ -0,0 +1,721 @@ +import fs from "node:fs/promises" +import os from "node:os" +import path from "node:path" +import { describe, expect, test } from "@jest/globals" +import { buildMarkdownArtifact } from "@lib/markdown/buildMarkdownArtifact.js" +import type { MarkdownArtifact } from "@lib/markdown/types.js" +import { + analyzeSourceMarkdown, + blockingFindings, + compareSourceToArtifact, + checkPath, + createReport, + determineExitCode, + findingIdentity, + parseCliArguments, + readStaticExpression, + inspectSyntheticArtifact, + runMarkdownFidelity, + serializeReport, + type FidelityException, + type FidelityFinding, +} from "./check-markdown-fidelity.js" + +function artifact(markdown: string): MarkdownArtifact { + return { + requestPath: "fixture", + routeKind: "normal", + transformMode: "normal", + sourcePath: path.resolve("src/content/fixture.mdx"), + markdown, + } +} + +function syntheticArtifact(routeKind: "redirect" | "selector", markdown: string): MarkdownArtifact { + return { + requestPath: "fixture", + routeKind, + transformMode: "normal", + markdown, + } +} + +function finding(status: FidelityFinding["status"], occurrence: string, sourceLine = 1): FidelityFinding { + return { path: "fixture", status, occurrence, sourceLine } +} + +describe("Markdown fidelity execution modes", () => { + test("full-corpus accepts a current identity from the baseline", () => { + const known = finding("missing", "lang=default;fact=1;text=known") + expect(known.status).toBe("missing") + expect(determineExitCode("full-corpus", [known], new Set([findingIdentity(known)]))).toBe(0) + }) + + test.each(["missing", "unsupported", "unverifiable", "degraded"] as const)( + "full-corpus blocks a new %s identity", + (status) => { + const current = finding(status, `lang=default;new=${status}`) + expect(current.status).toBe(status) + expect(determineExitCode("full-corpus", [current], new Set())).toBe(1) + } + ) + + test("full-corpus names the new identity that fails the run", () => { + const current = finding("unverifiable", "lang=default;new=parse") + current.reason = "Could not parse expression with acorn" + expect(blockingFindings("full-corpus", [current], new Set())).toEqual([current]) + }) + + test("full-corpus ignores resolved baseline identities and present findings", () => { + const resolved = finding("missing", "lang=default;fact=1;text=resolved") + const present = finding("present", "lang=default;fact=1;text=current") + const baseline = new Set([findingIdentity(resolved)]) + expect(resolved.status).toBe("missing") + expect(present.status).toBe("present") + expect(determineExitCode("full-corpus", [], baseline)).toBe(0) + expect(determineExitCode("full-corpus", [present], baseline)).toBe(0) + }) + + test("focused mode blocks a baseline-listed identity", () => { + const known = finding("unsupported", "lang=default;diagnostic=known") + expect(known.status).toBe("unsupported") + expect(determineExitCode("focused", [known], new Set([findingIdentity(known)]))).toBe(1) + }) + + test("--path is repeatable and blocks on every non-exempt failure", () => { + expect(parseCliArguments(["--path", "cre/example", "--path", "ccip/example"])).toEqual({ + mode: "focused", + paths: ["ccip/example", "cre/example"], + }) + expect(determineExitCode("focused", [finding("degraded", "lang=default;transform=fallback")])).toBe(1) + expect(determineExitCode("focused", [finding("unsupported", "lang=default;diagnostic=1;Widget")])).toBe(1) + }) + + test.each([ + ["src/content/cre/getting-started/cli-installation/index.mdx", "cre/getting-started/cli-installation"], + [ + "src/content/cre/getting-started/cli-installation/macos-linux.mdx", + "cre/getting-started/cli-installation/macos-linux", + ], + ["src/content/cre/getting-started/cli-installation/windows.mdx", "cre/getting-started/cli-installation/windows"], + ])("maps source path %s to production request path", (sourcePath, requestPath) => { + expect(parseCliArguments(["--path", sourcePath])).toEqual({ mode: "focused", paths: [requestPath] }) + }) + + test.each([ + "/Users/example/src/content/cre/page.mdx", + "../src/content/cre/page.mdx", + "src/content/../secrets.mdx", + "src/other/page.mdx", + "other/page.mdx", + "src/content/cre/page.txt", + "src/content/cre/page", + "cre/example.md", + "cre/example.md.md", + "cre/example.mdx", + "src/content/cre/page.md.md", + "src/content/cre/page.mdx.md", + ])("rejects unsafe or unsupported source path %s", (sourcePath) => { + expect(() => parseCliArguments(["--path", sourcePath])).toThrow(`Invalid Markdown path: ${sourcePath}`) + }) + + test.each([ + ["src/content/cre/getting-started/cli-installation/index.mdx", "cre/getting-started/cli-installation"], + [ + "src/content/cre/getting-started/cli-installation/macos-linux.mdx", + "cre/getting-started/cli-installation/macos-linux", + ], + ["src/content/cre/getting-started/cli-installation/windows.mdx", "cre/getting-started/cli-installation/windows"], + ])("checks source path %s through its production artifact", async (sourcePath, requestPath) => { + const directory = await fs.mkdtemp(path.join(os.tmpdir(), "markdown-fidelity-")) + const reportPath = path.join(directory, "report.json") + try { + const { report } = await runMarkdownFidelity(["--path", sourcePath], { reportPath }) + + expect(report.pathCount).toBe(1) + expect(report.findings.length).toBeGreaterThan(0) + expect(report.findings.every((candidate) => candidate.path === requestPath)).toBe(true) + expect(report.findings.some((candidate) => candidate.occurrence === "lang=default;artifact")).toBe(false) + expect(JSON.parse(await fs.readFile(reportPath, "utf8"))).toMatchObject({ pathCount: 1 }) + } finally { + await fs.rm(directory, { recursive: true, force: true }) + } + }) + + test("an exact exception passes and does not cover another occurrence", () => { + const source = "\n" + const initial = compareSourceToArtifact("fixture", "src/content/fixture.mdx", source, artifact("")) + const first = initial[0] + const exception: FidelityException = { + path: first.path, + occurrence: first.occurrence, + status: "unsupported", + reason: "Known projection gap", + owner: "docs-platform", + removalCondition: "Remove when UnknownWidget has a static projection", + } + const checked = compareSourceToArtifact("fixture", "src/content/fixture.mdx", source, artifact(""), "default", [ + exception, + ]) + + expect(checked[0].exception).toEqual({ + reason: exception.reason, + owner: exception.owner, + removalCondition: exception.removalCondition, + }) + expect(checked[1].exception).toBeUndefined() + expect(determineExitCode("focused", [checked[0]])).toBe(0) + expect(determineExitCode("focused", checked)).toBe(1) + }) +}) + +describe("raw source analysis", () => { + test("unsupported findings preserve component name, repository path, and original line", () => { + const source = [ + "---", + "title: Fixture", + "---", + "", + "Visible text", + "", + 'lost', + ].join("\n") + const [unsupported] = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + source, + artifact("Visible text") + ).filter((candidate) => candidate.status === "unsupported") + + expect(unsupported).toMatchObject({ + name: "UnknownWidget", + sourcePath: "src/content/fixture.mdx", + sourceLine: 7, + sourceText: 'lost', + }) + }) + + test("CRE_CLI_VERSION remains unverifiable", () => { + const source = 'export const CRE_CLI_VERSION = VERSIONS["cre-cli"].LATEST\n\nCurrent version: {CRE_CLI_VERSION}' + const diagnostics = analyzeSourceMarkdown(source).diagnostics + + expect(diagnostics).toEqual( + expect.arrayContaining([expect.objectContaining({ status: "unverifiable", name: "CRE_CLI_VERSION", line: 3 })]) + ) + }) + + test("allowlists literals, arrays, and objects without executing dynamic syntax", () => { + expect( + readStaticExpression({ + type: "ArrayExpression", + elements: [ + { type: "Literal", value: "go" }, + { + type: "ObjectExpression", + properties: [ + { + type: "Property", + computed: false, + kind: "init", + key: { type: "Identifier", name: "name" }, + value: { type: "Literal", value: "TypeScript" }, + }, + ], + }, + ], + }) + ).toEqual({ ok: true, value: ["go", { name: "TypeScript" }] }) + expect( + readStaticExpression({ type: "CallExpression", callee: { type: "Identifier", name: "sideEffect" } }) + ).toEqual({ + ok: false, + syntax: "CallExpression", + }) + expect(readStaticExpression({ type: "MemberExpression" })).toEqual({ ok: false, syntax: "MemberExpression" }) + expect(readStaticExpression({ type: "NewExpression" })).toEqual({ ok: false, syntax: "NewExpression" }) + }) + + test("enumerates every static language key without evaluating imported code identifiers", () => { + const source = [ + "", + "", + ].join("\n") + const analysis = analyzeSourceMarkdown(source) + + expect(analysis.languages).toEqual(["go", "ts"]) + expect(analysis.diagnostics).toEqual( + expect.arrayContaining([ + expect.objectContaining({ name: "CodeHighlightBlockMulti.languages", status: "unverifiable" }), + expect.objectContaining({ name: "CodeHighlightBlockMulti.languages.go", status: "unverifiable" }), + expect.objectContaining({ name: "CodeHighlightBlockMulti.languages.ts", status: "unverifiable" }), + ]) + ) + }) + + test("code fences containing JSX-like text are ordinary code facts", () => { + const analysis = analyzeSourceMarkdown("```tsx\n{dangerous()}\n```") + + expect(analysis.diagnostics).toEqual([]) + expect(analysis.facts).toEqual([ + expect.objectContaining({ kind: "code", value: "{dangerous()}" }), + ]) + }) +}) + +describe("PageTabs occurrence grouping", () => { + test.each(["index.mdx", "macos-linux.mdx", "windows.mdx"])( + "three CLI pages PageTabs are present with grouped macOS / Linux then Windows: %s", + async (fileName) => { + const sourcePath = path.join("src/content/cre/getting-started/cli-installation", fileName) + const source = await fs.readFile(sourcePath, "utf8") + const served = [ + "## Select your operating system", + "", + "- [macOS / Linux](/cre/getting-started/cli-installation/macos-linux)", + "- [Windows](/cre/getting-started/cli-installation/windows)", + ].join("\n") + const findings = compareSourceToArtifact(sourcePath, sourcePath, source, artifact(served)) + const pageTabs = findings.filter( + (candidate) => + candidate.expected === "Select your operating system" || + candidate.expected === "macOS / Linux -> /cre/getting-started/cli-installation/macos-linux" || + candidate.expected === "Windows -> /cre/getting-started/cli-installation/windows" + ) + + expect(pageTabs.map((candidate) => [candidate.status, candidate.expected])).toEqual([ + ["present", "Select your operating system"], + ["present", "macOS / Linux -> /cre/getting-started/cli-installation/macos-linux"], + ["present", "Windows -> /cre/getting-started/cli-installation/windows"], + ]) + } + ) + + test("ordered matching rejects a removed duplicate and swapped links", () => { + const duplicateSource = "same\n\nsame" + const duplicateFindings = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + duplicateSource, + artifact("same") + ) + expect(duplicateFindings.map((candidate) => candidate.status)).toEqual(["present", "missing"]) + + const tabs = `` + const swapped = "[Second](/second)\n\n[First](/first)" + const swappedFindings = compareSourceToArtifact("fixture", "src/content/fixture.mdx", tabs, artifact(swapped)) + expect(swappedFindings.map((candidate) => candidate.status)).toEqual(["present", "missing"]) + }) +}) + +describe("source-less artifact fidelity", () => { + test("redirects require the exact current link and inspect their target page", async () => { + const requestPath = "data-streams/reference/streams-direct/streams-direct-interface-ws" + const targetPath = "data-streams/reference/interface-ws" + const correct = inspectSyntheticArtifact( + requestPath, + syntheticArtifact("redirect", `[${targetPath}](/${targetPath}.md)`) + ) + const wrong = inspectSyntheticArtifact(requestPath, syntheticArtifact("redirect", `[${targetPath}](/wrong.md)`)) + const empty = inspectSyntheticArtifact(requestPath, syntheticArtifact("redirect", "")) + + expect(correct.targetPaths).toEqual([targetPath]) + expect(correct.findings).toEqual([ + expect.objectContaining({ + status: "present", + occurrence: `lang=default;synthetic=redirect;${targetPath} -> /${targetPath}.md`, + sourceLine: null, + }), + ]) + expect(wrong.findings[0]).toMatchObject({ status: "missing", sourceLine: null }) + expect(empty.findings[0]).toMatchObject({ status: "missing", sourceLine: null }) + + const evaluated = await checkPath(requestPath) + expect(evaluated.some((candidate) => candidate.path === targetPath)).toBe(true) + }) + + test("CRE selectors require both exact entries and inspect both target pages", async () => { + const requestPath = "cre/reference/sdk/evm-client" + const goPath = `${requestPath}-go` + const tsPath = `${requestPath}-ts` + const correct = inspectSyntheticArtifact( + requestPath, + syntheticArtifact("selector", `- Go: /${goPath}.md\n- TypeScript: /${tsPath}.md`) + ) + const wrong = inspectSyntheticArtifact( + requestPath, + syntheticArtifact("selector", `- Go: /wrong.md\n- TypeScript: /${tsPath}.md`) + ) + const empty = inspectSyntheticArtifact(requestPath, syntheticArtifact("selector", "")) + + expect(correct.targetPaths).toEqual([goPath, tsPath]) + expect(correct.findings.map((candidate) => candidate.status)).toEqual(["present", "present"]) + expect(wrong.findings.map((candidate) => candidate.status)).toEqual(["missing", "present"]) + expect(empty.findings.map((candidate) => candidate.status)).toEqual(["missing", "missing"]) + + const evaluated = await checkPath(requestPath) + const evaluatedPaths = new Set(evaluated.map((candidate) => candidate.path)) + expect(evaluatedPaths.has(goPath)).toBe(true) + expect(evaluatedPaths.has(tsPath)).toBe(true) + }) +}) + +describe("content-bearing component fidelity", () => { + test("static CodeHighlightBlock and CodeSample content cannot disappear", () => { + const codeHighlight = '' + const codeHighlightCorrect = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + codeHighlight, + artifact("Code snippet for fixture.ts:\n\n```ts\nconst answer = 42\n```") + ) + const codeHighlightDropped = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + codeHighlight, + artifact("") + ) + const codeSample = '' + const codeSampleLink = + "[Open APIConsumer.sol in Remix](https://remix.ethereum.org/#url=https://docs.chain.link/samples/APIRequests/APIConsumer.sol)" + + expect(codeHighlightCorrect.map((candidate) => candidate.status)).toEqual(["present", "present"]) + expect(codeHighlightDropped.map((candidate) => candidate.status)).toEqual(["missing", "missing"]) + expect( + compareSourceToArtifact("fixture", "src/content/fixture.mdx", codeSample, artifact(codeSampleLink)).map( + (candidate) => candidate.status + ) + ).toEqual(["present"]) + expect(compareSourceToArtifact("fixture", "src/content/fixture.mdx", codeSample, artifact(""))[0]).toMatchObject({ + status: "missing", + sourcePath: "src/content/fixture.mdx", + sourceLine: 1, + }) + }) + test("static SchemaFieldsTable facts are checked and the current projection passes", async () => { + const source = '' + const analysis = analyzeSourceMarkdown(source, "src/content/fixture.mdx") + + expect(analysis.diagnostics).toEqual([]) + expect(analysis.facts).toEqual( + expect.arrayContaining([ + expect.objectContaining({ kind: "text", value: "Field" }), + expect.objectContaining({ kind: "text", value: "feedId" }), + expect.objectContaining({ kind: "text", value: "price" }), + ]) + ) + expect( + compareSourceToArtifact("fixture", "src/content/fixture.mdx", source, artifact("")).some( + (candidate) => candidate.status === "missing" + ) + ).toBe(true) + + const current = (await checkPath("data-streams/reference/report-schema-v2")).filter( + (candidate) => + candidate.sourcePath === "src/content/data-streams/reference/report-schema-v2.mdx" && + candidate.sourceLine === 27 + ) + expect(current.length).toBeGreaterThan(3) + expect(current.every((candidate) => candidate.status === "present")).toBe(true) + }) + + test.each([ + ["CodeHighlightBlock", ""], + ["CodeSample", ""], + ["AnyApiCallout", ''], + ["CcipCommon", ''], + ["SchemaFieldsTable", ''], + ["Billing", ""], + ])("%s unresolved content is blocking with component, path, and line", (name, component) => { + const source = `Visible\n\n${component}` + const [diagnostic] = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + source, + artifact("Visible") + ).filter((candidate) => candidate.status === "unverifiable") + + expect(diagnostic).toMatchObject({ + name, + sourcePath: "src/content/fixture.mdx", + sourceLine: 3, + sourceText: component, + }) + expect(JSON.parse(findingIdentity(diagnostic))).toMatchObject({ + path: "fixture", + status: "unverifiable", + language: "default", + component: name, + reason: diagnostic.reason, + }) + }) + + test.each([ + ['', "Use Chainlink Functions"], + ['', "Best Practices"], + ])("static selector content is independently inventoried: %s", (component, expectedFragment) => { + const analysis = analyzeSourceMarkdown(component, "src/content/fixture.mdx") + + expect(analysis.diagnostics).toEqual([]) + expect(analysis.facts.some((fact) => fact.value.includes(expectedFragment))).toBe(true) + expect( + compareSourceToArtifact("fixture", "src/content/fixture.mdx", component, artifact("")).some( + (candidate) => candidate.status === "missing" + ) + ).toBe(true) + }) +}) + +describe("linked heading fidelity", () => { + test("compares the nested destination without duplicating heading text", () => { + const source = "# [Current guide](/current)" + const correct = compareSourceToArtifact("fixture", "src/content/fixture.mdx", source, artifact(source)) + const changed = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + source, + artifact("# [Current guide](/changed)") + ) + const analysis = analyzeSourceMarkdown(source) + + expect(analysis.facts.map((fact) => [fact.kind, fact.value])).toEqual([ + ["heading", "Current guide"], + ["link", "Current guide"], + ]) + expect(correct.map((candidate) => candidate.status)).toEqual(["present", "present"]) + expect(changed.map((candidate) => candidate.status)).toEqual(["present", "missing"]) + expect(changed[1]).toMatchObject({ + expected: "Current guide -> /current", + sourcePath: "src/content/fixture.mdx", + sourceLine: 1, + }) + }) +}) + +describe("semantic fact boundaries and identities", () => { + test("coalesces adjacent inline text on both sides of comparison", () => { + const source = "Install the **CRE CLI** now." + const analysis = analyzeSourceMarkdown(source) + const findings = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + source, + artifact("Install the CRE CLI now.") + ) + + expect(analysis.facts.map((fact) => [fact.kind, fact.value])).toEqual([["text", "Install the CRE CLI now."]]) + expect(findings.map((candidate) => candidate.status)).toEqual(["present"]) + }) + + test("keeps the real CLI dynamic expression as a text boundary", async () => { + const source = await fs.readFile("src/content/cre/reference/cli/index.mdx", "utf8") + const analysis = analyzeSourceMarkdown(source, "src/content/cre/reference/cli/index.mdx") + const line18 = analysis.facts.filter((fact) => fact.line === 18 && fact.kind === "text").map((fact) => fact.value) + const line19 = analysis.facts.filter((fact) => fact.line === 19 && fact.kind === "text").map((fact) => fact.value) + + expect(line18).toContain( + "To ensure compatibility with the guides and examples in this documentation, please use version" + ) + expect(line19).toContain( + "of the CRE CLI. You can check your installed version by running cre version. Refer to the" + ) + expect([...line18, ...line19].some((value) => value.includes("version of the CRE CLI"))).toBe(false) + }) + + test("blank lines and inserted distinct present facts do not change a loss identity", () => { + const original = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "Visible\n\nLost", + artifact("Visible") + ).find((candidate) => candidate.status === "missing") + const blankLineInserted = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "Visible\n\n\nLost", + artifact("Visible") + ).find((candidate) => candidate.status === "missing") + const presentFactInserted = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "Inserted\n\nLost", + artifact("Inserted") + ).find((candidate) => candidate.status === "missing") + const withoutInsertedFact = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "Lost", + artifact("") + ).find((candidate) => candidate.status === "missing") + + if (!original || !blankLineInserted || !presentFactInserted || !withoutInsertedFact) { + throw new Error("Expected missing findings") + } + expect(findingIdentity(original)).toBe(findingIdentity(blankLineInserted)) + expect(findingIdentity(presentFactInserted)).toBe(findingIdentity(withoutInsertedFact)) + }) + + test("long losses with a common display prefix retain distinct full identities", () => { + const prefix = "same-prefix-".repeat(10) + const findings = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + `${prefix}alpha\n\n${prefix}beta`, + artifact("") + ) + const identities = findings.map(findingIdentity) + + expect(findings.map((candidate) => candidate.display)).toEqual([ + expect.stringMatching(/\.\.\.$/), + expect.stringMatching(/\.\.\.$/), + ]) + expect(new Set(identities).size).toBe(2) + expect(identities[0]).toContain(`${prefix}alpha`) + expect(identities[1]).toContain(`${prefix}beta`) + }) + + test("residual findings retain exact served syntax and served line", () => { + const served = "Visible\n\n" + const [residual] = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "Visible", + artifact(served) + ).filter((candidate) => candidate.occurrence.includes(";residual=")) + const identity = JSON.parse(findingIdentity(residual)) + + expect(residual).toMatchObject({ + status: "unverifiable", + name: "Widget", + reason: "Served Markdown contains residual runtime syntax", + servedLine: 3, + servedText: "", + }) + expect(residual.occurrence).toContain('"servedText":""') + expect(identity.servedText).toBe("") + }) + + test("globally scheduled or visited synthetic targets are not emitted recursively", async () => { + const requestPath = "cre/reference/sdk/evm-client" + const goPath = `${requestPath}-go` + const tsPath = `${requestPath}-ts` + const scheduled = await checkPath(requestPath, { + globallyScheduledPaths: new Set([requestPath, goPath, tsPath]), + }) + const visited = await checkPath(requestPath, { + globallyScheduledPaths: new Set([requestPath]), + globallyVisitedPaths: new Set([goPath, tsPath]), + }) + + expect(new Set(scheduled.map((candidate) => candidate.path))).toEqual(new Set([requestPath])) + expect(new Set(visited.map((candidate) => candidate.path))).toEqual(new Set([requestPath])) + expect(new Set(scheduled.map(findingIdentity)).size).toBe(scheduled.length) + expect(new Set(visited.map(findingIdentity)).size).toBe(visited.length) + }) +}) + +describe("final projection and envelope regressions", () => { + test("checks imported CodeHighlightBlockMulti branches on a current production page", async () => { + const findings = (await checkPath("cre")).filter( + (candidate) => + candidate.sourcePath === "src/content/cre/index.mdx" && + candidate.sourceLine === 70 && + candidate.occurrence.includes('"kind":"code"') + ) + + expect(findings.length).toBe(4) + expect(findings.every((candidate) => candidate.status === "present")).toBe(true) + expect(new Set(findings.map((candidate) => candidate.lang ?? "default"))).toEqual(new Set(["default", "go", "ts"])) + }) + + test("reports DownloadButton as an unsupported visible component", () => { + const source = 'Visible\n\nDownload the toolkit' + const [unsupported] = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + source, + artifact("Visible") + ).filter((candidate) => candidate.status === "unsupported") + + expect(unsupported).toMatchObject({ + name: "DownloadButton", + sourcePath: "src/content/fixture.mdx", + sourceLine: 3, + sourceText: 'Download the toolkit', + }) + }) + + test("requires the exact production title, Source URL, and llms.txt directive", async () => { + const requestPath = "cre/getting-started/cli-installation" + const sourcePath = "src/content/cre/getting-started/cli-installation/index.mdx" + const source = await fs.readFile(sourcePath, "utf8") + const production = await buildMarkdownArtifact(requestPath) + expect(production).not.toBeNull() + if (!production) throw new Error(`Expected production Markdown artifact for ${requestPath}`) + + const envelope = compareSourceToArtifact(requestPath, sourcePath, source, production).filter((candidate) => + candidate.name?.startsWith("Envelope.") + ) + expect(envelope.map((candidate) => [candidate.name, candidate.status])).toEqual([ + ["Envelope.title", "present"], + ["Envelope.source", "present"], + ["Envelope.directive", "present"], + ]) + + const mutations = [ + ["Envelope.title", production.markdown.replace(/^# .+$/m, "# Changed title")], + ["Envelope.source", production.markdown.replace(/^Source: .+$/m, "Source: https://example.test/changed")], + [ + "Envelope.directive", + production.markdown.replace( + "> For the complete documentation index, see [llms.txt](/llms.txt).", + "> Documentation index removed." + ), + ], + ] as const + for (const [name, markdown] of mutations) { + const [finding] = compareSourceToArtifact(requestPath, sourcePath, source, { ...production, markdown }).filter( + (candidate) => candidate.name === name + ) + expect(finding).toMatchObject({ status: "missing", name }) + } + }) + + test("numbers unchanged missing duplicates independently from identical present copies", () => { + const original = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "same\n\nsame", + artifact("same") + ).find((candidate) => candidate.status === "missing") + const withPresentCopy = compareSourceToArtifact( + "fixture", + "src/content/fixture.mdx", + "same\n\nsame\n\nsame", + artifact("same\n\nsame") + ).find((candidate) => candidate.status === "missing") + + expect(original).toBeDefined() + expect(withPresentCopy).toBeDefined() + if (!original || !withPresentCopy) throw new Error("Expected one unchanged missing duplicate in both comparisons") + expect(original.occurrence).toContain(";duplicate=1") + expect(withPresentCopy.occurrence).toContain(";duplicate=1") + expect(findingIdentity(withPresentCopy)).toBe(findingIdentity(original)) + }) +}) + +describe("stable report JSON", () => { + test("is sorted, timestamp-free, and contains no score", () => { + const second = finding("unsupported", "lang=default;diagnostic=2;Second", 20) + const first = finding("missing", "lang=default;fact=1;text=First", 10) + const left = serializeReport(createReport(2, [second, first])) + const right = serializeReport(createReport(2, [first, second])) + + expect(left).toBe(right) + expect(left).not.toContain("score") + expect(left).not.toContain("timestamp") + expect(JSON.parse(left)).toMatchObject({ + pathCount: 2, + counts: { present: 0, missing: 1, unsupported: 1, unverifiable: 0, degraded: 0 }, + }) + }) +}) diff --git a/src/scripts/check-markdown-fidelity.ts b/src/scripts/check-markdown-fidelity.ts new file mode 100644 index 00000000000..7743d52e718 --- /dev/null +++ b/src/scripts/check-markdown-fidelity.ts @@ -0,0 +1,1928 @@ +import fs from "node:fs/promises" +import fsSync from "node:fs" +import path from "node:path" +import { fileURLToPath } from "node:url" +import { unified } from "unified" +import remarkGfm from "remark-gfm" +import remarkMdx from "remark-mdx" +import remarkParse from "remark-parse" +import { SKIP, visit } from "unist-util-visit" +import type { Node, Parent } from "unist" +import { buildMarkdownArtifact, normalizeMarkdownPath } from "@lib/markdown/buildMarkdownArtifact.js" +import { + readStaticDefaultImports, + readStaticJsxSelectorConditions, + stripHighlighterComments, +} from "@lib/markdown/sourceScanners.js" +import type { MarkdownArtifact } from "@lib/markdown/types.js" +import { markdownFidelityExceptions } from "./markdown-fidelity-exceptions.js" + +const CONTENT_ROOT = path.resolve("src/content") +const DEFAULT_REPORT_PATH = "reports/markdown-fidelity-report.json" +const DEFAULT_BASELINE_PATH = fileURLToPath(new URL("./markdown-fidelity-baseline.json", import.meta.url)) +const SITE_BASE = "https://docs.chain.link" +const LLMS_DIRECTIVE = "> For the complete documentation index, see [llms.txt](/llms.txt)." + +const MARKDOWN_REDIRECT_TARGETS = { + "ccip/tutorials/cross-chain-tokens": "ccip/tutorials/evm/cross-chain-tokens", + "chainlink-functions/resources/concepts": "chainlink-functions/resources", + "cre/getting-started/conclusion": "cre/getting-started", + "data-streams/getting-started": "data-streams/tutorials/streams-trade/getting-started", + "data-streams/getting-started-hardhat": "data-streams/tutorials/streams-trade/getting-started-hardhat", + "data-streams/reference/streams-direct/streams-direct-interface-ws": "data-streams/reference/interface-ws", + "data-streams/reference/streams-direct/streams-direct-onchain-verification": + "data-streams/reference/onchain-verification", +} as const + +const MARKDOWN_REDIRECT_PATHS = Object.keys(MARKDOWN_REDIRECT_TARGETS) + +export type FidelityStatus = "present" | "missing" | "unsupported" | "unverifiable" | "degraded" +export type RunMode = "focused" | "full-corpus" + +export interface FidelityException { + path: string + occurrence: string + status: Exclude + reason: string + owner: string + removalCondition: string +} + +export interface FidelityFinding { + path: string + status: FidelityStatus + occurrence: string + sourcePath?: string + sourceLine: number | null + sourceText?: string + lang?: string + name?: string + expected?: string + reason?: string + exception?: Pick + servedLine?: number + servedText?: string + display?: string +} + +export interface FidelityReport { + pathCount: number + counts: Record + findings: FidelityFinding[] +} + +export interface SourceFact { + ordinal: number + kind: "text" | "heading" | "link" | "code" + value: string + url?: string + depth?: number + variant?: string + line: number + sourceText: string + sourcePath?: string +} + +export interface SourceDiagnostic { + status: "unsupported" | "unverifiable" + ordinal: number + name: string + line: number + sourceText: string + reason: string + sourcePath?: string +} + +export interface SourceAnalysis { + facts: SourceFact[] + diagnostics: SourceDiagnostic[] + languages: string[] +} + +interface ObservedFact { + kind: SourceFact["kind"] + value: string + url?: string + depth?: number +} + +interface ObservedAnalysis { + facts: ObservedFact[] + residuals: Array<{ name: string; line: number; text: string; reason: string }> +} + +type AstRecord = Record + +const processor = unified().use(remarkParse).use(remarkMdx).use(remarkGfm) +const containerElements: Record = { + div: true, + Fragment: true, +} + +const selectorComponents = { + AnyApiCallout: { astro: "src/features/any-api/common/AnyApiCallout.astro", attribute: "callout" }, + FeedsCommonCallout: { astro: "src/features/feeds/callouts/FeedsCommonCallout.astro", attribute: "callout" }, + ResourcesCallout: { astro: "src/features/resources/callouts/ResourcesCallout.astro", attribute: "callout" }, + DataStreams: { astro: "src/features/data-streams/common/DataStreams.astro", attribute: "section" }, + CcipCommon: { astro: "src/features/ccip/CcipCommon.astro", attribute: "callout" }, +} as const + +function normalizeText(value: string): string { + return value.replace(/\s+/g, " ").trim() +} + +type GroupedFact = T & { group?: string; rawValue?: string } + +function coalesceTextFacts(facts: GroupedFact[]): T[] { + const coalesced: GroupedFact[] = [] + for (const fact of facts) { + const previous = coalesced[coalesced.length - 1] + if (fact.kind === "text" && fact.group && previous?.kind === "text" && previous.group === fact.group) { + previous.rawValue = `${previous.rawValue ?? previous.value}${fact.rawValue ?? fact.value}` + previous.value = normalizeText(previous.rawValue) + continue + } + coalesced.push({ ...fact }) + } + return coalesced.map((fact) => { + const result = { ...fact } + delete result.group + delete result.rawValue + return result as T + }) +} + +function lineText(lines: string[], line: number): string { + return lines[line - 1] ?? "" +} + +function maskFrontmatter(source: string): string { + if (!source.startsWith("---\n") && !source.startsWith("---\r\n")) return source + const lines = source.split(/(?<=\n)/) + for (let index = 1; index < lines.length; index += 1) { + if (/^---\s*(?:\r?\n)?$/.test(lines[index])) { + return lines.map((line, lineIndex) => (lineIndex <= index ? line.replace(/[^\r\n]/g, " ") : line)).join("") + } + } + return source +} + +function nodeLine(node: Node): number { + return node.position?.start.line ?? 1 +} + +function childrenOf(node: Node): Node[] { + return Array.isArray((node as Parent).children) ? (node as Parent).children : [] +} + +function nodeVisibleText(node: Node): string { + if (node.type === "text" || node.type === "inlineCode") { + return String((node as Node & { value?: unknown }).value ?? "") + } + return childrenOf(node).map(nodeVisibleText).join("") +} + +function expressionFrom(value: unknown): AstRecord | null { + if (!value || typeof value !== "object") return null + const data = (value as AstRecord).data + const estree = data && typeof data === "object" ? (data as AstRecord).estree : undefined + const body = estree && typeof estree === "object" ? (estree as AstRecord).body : undefined + const statement = Array.isArray(body) ? body[0] : undefined + const expression = statement && typeof statement === "object" ? (statement as AstRecord).expression : undefined + return expression && typeof expression === "object" ? (expression as AstRecord) : null +} +function staticImports(tree: Node): Map { + const imports = new Map() + for (const node of childrenOf(tree)) { + if (node.type !== "mdxjsEsm") continue + const data = (node as Node & { data?: AstRecord }).data + const estree = data?.estree as AstRecord | undefined + const body = estree?.body + if (!Array.isArray(body)) continue + for (const statementValue of body) { + const statement = statementValue as AstRecord + const source = statement.source as AstRecord | undefined + if ( + statement.type !== "ImportDeclaration" || + typeof source?.value !== "string" || + !Array.isArray(statement.specifiers) + ) { + continue + } + for (const specifierValue of statement.specifiers) { + const specifier = specifierValue as AstRecord + const local = specifier.local as AstRecord | undefined + if ( + (specifier.type === "ImportDefaultSpecifier" || specifier.type === "ImportSpecifier") && + typeof local?.name === "string" + ) { + imports.set(local.name, source.value) + } + } + } + } + return imports +} + +function resolveProjectFile(candidate: string): { absolute: string; relative: string } | null { + try { + const root = fsSync.realpathSync(process.cwd()) + const absolute = fsSync.realpathSync(path.resolve(candidate)) + if (absolute !== root && !absolute.startsWith(`${root}${path.sep}`)) return null + if (!fsSync.statSync(absolute).isFile()) return null + return { absolute, relative: path.relative(process.cwd(), absolute).split(path.sep).join("/") } + } catch { + return null + } +} + +function sourceLocation(sourcePath: string | undefined): { absolute: string; relative: string } | null { + if (!sourcePath) return null + return resolveProjectFile(path.isAbsolute(sourcePath) ? sourcePath : path.resolve(sourcePath)) +} + +function expressionAttribute(node: Node, name: string): AstRecord | null { + const attributes = (node as Node & { attributes?: AstRecord[] }).attributes ?? [] + return expressionFrom(attributes.find((candidate) => candidate.name === name)?.value) +} + +function resolveSelectorTarget( + component: keyof typeof selectorComponents, + selector: string +): { target?: { absolute: string; relative: string }; reason?: string } { + const config = selectorComponents[component] + const astro = resolveProjectFile(config.astro) + if (!astro) return { reason: `Selector definition ${config.astro} is missing or escapes the project` } + const source = fsSync.readFileSync(astro.absolute, "utf8") + const imports = readStaticDefaultImports(source) + const componentBySelector = readStaticJsxSelectorConditions(source, config.attribute) + const importedPath = imports.get(componentBySelector.get(selector) ?? "") + if (!importedPath?.endsWith(".mdx")) + return { reason: `${component} selector "${selector}" has no static MDX target in ${astro.relative}` } + const target = resolveProjectFile(path.resolve(path.dirname(astro.absolute), importedPath)) + return target + ? { target } + : { reason: `${component} selector "${selector}" target "${importedPath}" is missing or escapes the project` } +} + +export function readStaticExpression(node: unknown): { ok: true; value: unknown } | { ok: false; syntax: string } { + if (!node || typeof node !== "object") return { ok: false, syntax: "missing expression" } + const expression = node as AstRecord + const type = String(expression.type ?? "unknown") + + if (type === "Literal") return { ok: true, value: expression.value } + + if (type === "TemplateLiteral") { + const expressions = expression.expressions + const quasis = expression.quasis + if (!Array.isArray(expressions) || expressions.length !== 0 || !Array.isArray(quasis)) { + return { ok: false, syntax: type } + } + return { + ok: true, + value: quasis.map((quasi) => String(((quasi as AstRecord).value as AstRecord)?.cooked ?? "")).join(""), + } + } + + if (type === "ArrayExpression") { + if (!Array.isArray(expression.elements)) return { ok: false, syntax: type } + const values: unknown[] = [] + for (const element of expression.elements) { + if (!element || (element as AstRecord).type === "SpreadElement") return { ok: false, syntax: "SpreadElement" } + const result = readStaticExpression(element) + if (!result.ok) return result + values.push(result.value) + } + return { ok: true, value: values } + } + + if (type === "ObjectExpression") { + if (!Array.isArray(expression.properties)) return { ok: false, syntax: type } + const value: Record = {} + for (const propertyValue of expression.properties) { + const property = propertyValue as AstRecord + if (property.type !== "Property" || property.computed || property.kind !== "init") { + return { ok: false, syntax: String(property.type ?? "computed property") } + } + const keyNode = property.key as AstRecord + const key = + keyNode?.type === "Identifier" ? keyNode.name : keyNode?.type === "Literal" ? keyNode.value : undefined + if (typeof key !== "string" && typeof key !== "number") return { ok: false, syntax: "non-static key" } + const result = readStaticExpression(property.value) + if (!result.ok) return result + value[String(key)] = result.value + } + return { ok: true, value } + } + + return { ok: false, syntax: type } +} + +function staticAttribute(node: Node, name: string): { found: boolean; value?: unknown; syntax?: string } { + const attributes = (node as Node & { attributes?: AstRecord[] }).attributes ?? [] + const attribute = attributes.find( + (candidate) => candidate.type !== "mdxJsxExpressionAttribute" && candidate.name === name + ) + if (!attribute) return { found: false } + if (typeof attribute.value === "string" || attribute.value == null) + return { found: true, value: attribute.value ?? true } + const result = readStaticExpression(expressionFrom(attribute.value)) + return result.ok ? { found: true, value: result.value } : { found: true, syntax: result.syntax } +} + +function expressionAttributes(node: Node): Array<{ name: string; syntax: string }> { + const attributes = (node as Node & { attributes?: AstRecord[] }).attributes ?? [] + const failures: Array<{ name: string; syntax: string }> = [] + for (const attribute of attributes) { + if (attribute.type === "mdxJsxExpressionAttribute") { + failures.push({ name: "spread attribute", syntax: "mdxJsxExpressionAttribute" }) + continue + } + if (!attribute.value || typeof attribute.value === "string") continue + const result = readStaticExpression(expressionFrom(attribute.value)) + if (!result.ok) failures.push({ name: String(attribute.name ?? "attribute"), syntax: result.syntax }) + } + return failures +} + +function languageKeys(node: Node): { + keys: string[] + codes?: Array<{ key: string; value?: string; identifier?: string }> + syntax?: string +} { + const attributes = (node as Node & { attributes?: AstRecord[] }).attributes ?? [] + const attribute = attributes.find((candidate) => candidate.name === "languages") + const expression = expressionFrom(attribute?.value) + if (!expression || expression.type !== "ObjectExpression" || !Array.isArray(expression.properties)) { + return { keys: [], syntax: String(expression?.type ?? "missing languages") } + } + + const keys: string[] = [] + const codes: Array<{ key: string; value?: string; identifier?: string }> = [] + for (const propertyValue of expression.properties) { + const property = propertyValue as AstRecord + const keyNode = property.key as AstRecord + if (property.type !== "Property" || property.computed || property.kind !== "init") { + return { keys: [], syntax: String(property.type ?? "computed property") } + } + const key = keyNode?.type === "Identifier" ? keyNode.name : keyNode?.type === "Literal" ? keyNode.value : undefined + if (typeof key !== "string") return { keys: [], syntax: "non-static language key" } + + const value = property.value as AstRecord + const codeProperty = + value?.type === "ObjectExpression" && Array.isArray(value.properties) + ? (value.properties.find((candidate) => { + const item = candidate as AstRecord + const candidateKey = item.key as AstRecord + return ( + item.type === "Property" && + !item.computed && + item.kind === "init" && + (candidateKey?.name === "code" || candidateKey?.value === "code") + ) + }) as AstRecord | undefined) + : undefined + if (!codeProperty) return { keys: [], syntax: "non-static language branch" } + const codeNode = codeProperty.value as AstRecord + const staticCode = readStaticExpression(codeNode) + if (codeNode?.type === "Identifier" && typeof codeNode.name === "string") { + codes.push({ key, identifier: codeNode.name }) + } else if (staticCode.ok && typeof staticCode.value === "string") { + codes.push({ key, value: staticCode.value }) + } else { + return { keys: [], syntax: String(codeNode?.type ?? "non-static code") } + } + keys.push(key) + } + return { keys: [...new Set(keys)].sort(), codes } +} +type SchemaField = { field: string; type: string; description: string; link?: { label: string; href: string } } + +function extractStaticInitializer(source: string, declaration: string): string | null { + const declarationIndex = source.indexOf(declaration) + const equalsIndex = declarationIndex < 0 ? -1 : source.indexOf("=", declarationIndex + declaration.length) + const start = equalsIndex < 0 ? -1 : source.slice(equalsIndex + 1).search(/[[{]/) + equalsIndex + 1 + if (declarationIndex < 0 || equalsIndex < 0 || start <= equalsIndex) return null + const stack: string[] = [] + let quote = "" + let escaped = false + for (let index = start; index < source.length; index += 1) { + const character = source[index] + if (quote) { + if (escaped) escaped = false + else if (character === "\\") escaped = true + else if (character === quote) quote = "" + continue + } + if (character === '"' || character === "'" || character === "`") { + quote = character + continue + } + if (character === "{" || character === "[") stack.push(character) + if (character === "}" || character === "]") { + const expected = character === "}" ? "{" : "[" + if (stack.pop() !== expected) return null + if (stack.length === 0) return source.slice(start, index + 1) + } + } + return null +} + +function parseExpressionSource(source: string): AstRecord | null { + try { + const tree = processor.parse(`{${source}}`) + return expressionFrom(childrenOf(tree)[0]) + } catch { + return null + } +} + +function schemaFields(schema: string): SchemaField[] | null { + const dataFile = resolveProjectFile("src/features/feeds/components/reportSchemaData.ts") + if (!dataFile) return null + const source = fsSync.readFileSync(dataFile.absolute, "utf8") + const commonSource = extractStaticInitializer(source, "const COMMON_FIELDS") + const definitionsSource = extractStaticInitializer(source, "REPORT_SCHEMA_DEFINITIONS") + const common = commonSource ? readStaticExpression(parseExpressionSource(commonSource)) : null + const definitions = definitionsSource ? parseExpressionSource(definitionsSource) : null + if (!common?.ok || !Array.isArray(common.value) || definitions?.type !== "ObjectExpression") return null + const schemaProperty = Array.isArray(definitions.properties) + ? (definitions.properties.find((propertyValue) => { + const property = propertyValue as AstRecord + const key = property.key as AstRecord | undefined + return property.type === "Property" && !property.computed && (key?.name === schema || key?.value === schema) + }) as AstRecord | undefined) + : undefined + const schemaValue = schemaProperty?.value as AstRecord | undefined + const fieldsProperty = + schemaValue?.type === "ObjectExpression" && Array.isArray(schemaValue.properties) + ? (schemaValue.properties.find((propertyValue) => { + const property = propertyValue as AstRecord + const key = property.key as AstRecord | undefined + return ( + property.type === "Property" && !property.computed && (key?.name === "fields" || key?.value === "fields") + ) + }) as AstRecord | undefined) + : undefined + const fieldsExpression = fieldsProperty?.value as AstRecord | undefined + if (fieldsExpression?.type !== "ArrayExpression" || !Array.isArray(fieldsExpression.elements)) return null + const values: unknown[] = [] + for (const elementValue of fieldsExpression.elements) { + const element = elementValue as AstRecord + if (element?.type === "SpreadElement" && (element.argument as AstRecord | undefined)?.name === "COMMON_FIELDS") { + values.push(...common.value) + continue + } + const parsed = readStaticExpression(element) + if (!parsed.ok) return null + values.push(parsed.value) + } + if ( + !values.every( + (value): value is SchemaField => + !!value && + typeof value === "object" && + typeof (value as SchemaField).field === "string" && + typeof (value as SchemaField).type === "string" && + typeof (value as SchemaField).description === "string" && + (!(value as SchemaField).link || + (typeof (value as SchemaField).link?.label === "string" && + typeof (value as SchemaField).link?.href === "string")) + ) + ) { + return null + } + return values +} + +export function analyzeSourceMarkdown( + source: string, + sourcePath?: string, + ancestorPaths: ReadonlySet = new Set() +): SourceAnalysis { + let tree: Node + try { + tree = processor.parse(maskFrontmatter(source)) + } catch (error) { + return { + facts: [], + diagnostics: [ + { + status: "unverifiable", + ordinal: 1, + name: "MDX parse error", + line: 1, + sourceText: source.split(/\r?\n/, 1)[0] ?? "", + reason: error instanceof Error ? error.message : "Raw source could not be parsed", + ...(sourcePath ? { sourcePath } : {}), + }, + ], + languages: [], + } + } + const imports = staticImports(tree) + const lines = source.split(/\r?\n/) + const facts: GroupedFact[] = [] + const diagnostics: SourceDiagnostic[] = [] + const languages = new Set() + const parentByNode = new WeakMap() + const groupByBlock = new WeakMap() + const segmentByBlock = new WeakMap() + let groupOrdinal = 0 + let factOrdinal = 0 + let diagnosticOrdinal = 0 + + const inlineBlock = (node: Node): Node | null => { + let current: Node | undefined = node + while (current) { + if ( + current.type === "paragraph" || + current.type === "tableCell" || + current.type === "mdxJsxFlowElement" || + current.type === "mdxJsxTextElement" + ) { + return current + } + current = parentByNode.get(current) + } + return null + } + + const textGroup = (node: Node): string | undefined => { + const block = inlineBlock(node) + if (!block) return undefined + let group = groupByBlock.get(block) + if (group === undefined) { + group = ++groupOrdinal + groupByBlock.set(block, group) + } + return `${group}:${segmentByBlock.get(block) ?? 0}` + } + + const breakTextGroup = (node: Node) => { + const ownBlock = inlineBlock(node) + const block = ownBlock === node ? inlineBlock(parentByNode.get(node) ?? node) : ownBlock + if (block) segmentByBlock.set(block, (segmentByBlock.get(block) ?? 0) + 1) + } + + const addFact = ( + kind: SourceFact["kind"], + value: string, + node: Node, + url?: string, + depth?: number, + variant?: string, + coalesce = false + ) => { + const normalized = normalizeText(value) + if (!normalized) { + if (coalesce) { + const group = textGroup(node) + const previous = facts[facts.length - 1] + if (group && previous?.kind === "text" && previous.group === group) { + previous.rawValue = `${previous.rawValue ?? previous.value}${value}` + } + } + return + } + const line = nodeLine(node) + facts.push({ + ordinal: ++factOrdinal, + kind, + value: normalized, + url, + depth, + variant, + line, + sourceText: lineText(lines, line), + ...(sourcePath ? { sourcePath } : {}), + ...(coalesce ? { group: textGroup(node), rawValue: value } : {}), + }) + } + const addDiagnostic = (status: SourceDiagnostic["status"], name: string, node: Node, reason: string) => { + const line = nodeLine(node) + diagnostics.push({ + status, + ordinal: ++diagnosticOrdinal, + name, + line, + sourceText: lineText(lines, line), + reason, + ...(sourcePath ? { sourcePath } : {}), + }) + } + const appendAnalysis = (analysis: SourceAnalysis) => { + for (const fact of analysis.facts) facts.push({ ...fact, ordinal: ++factOrdinal }) + for (const diagnostic of analysis.diagnostics) diagnostics.push({ ...diagnostic, ordinal: ++diagnosticOrdinal }) + analysis.languages.forEach((language) => languages.add(language)) + } + + const includeMarkdown = (component: string, node: Node, target: { absolute: string; relative: string }) => { + if (ancestorPaths.has(target.absolute)) { + addDiagnostic( + "unverifiable", + component, + node, + `${component} target ${target.relative} forms a static inclusion cycle` + ) + return + } + try { + const nestedAncestors = new Set(ancestorPaths) + nestedAncestors.add(target.absolute) + appendAnalysis( + analyzeSourceMarkdown(fsSync.readFileSync(target.absolute, "utf8"), target.relative, nestedAncestors) + ) + } catch (error) { + addDiagnostic( + "unverifiable", + component, + node, + `${component} target ${target.relative} could not be read: ${error instanceof Error ? error.message : "unknown error"}` + ) + } + } + + const inspect = (root: Node) => { + visit(root, (node, _index, parent) => { + if (parent && !parentByNode.has(node)) parentByNode.set(node, parent) + }) + visit(root, (node) => { + if (node.type === "heading") { + const depth = "depth" in node && typeof node.depth === "number" ? node.depth : undefined + addFact("heading", nodeVisibleText(node), node, undefined, depth) + visit(node, "link", (link) => { + addFact("link", nodeVisibleText(link), link, String((link as Node & { url?: unknown }).url ?? "")) + return SKIP + }) + return SKIP + } + if (node.type === "link") { + addFact("link", nodeVisibleText(node), node, String((node as Node & { url?: unknown }).url ?? "")) + return SKIP + } + if (node.type === "image") { + const alt = String((node as Node & { alt?: unknown }).alt ?? "Image") || "Image" + addFact("text", `(Image: ${alt})`, node) + return SKIP + } + if (node.type === "code") { + addFact("code", String((node as Node & { value?: unknown }).value ?? ""), node) + return SKIP + } + if (node.type === "inlineCode" || node.type === "text") { + addFact( + "text", + String((node as Node & { value?: unknown }).value ?? ""), + node, + undefined, + undefined, + undefined, + true + ) + return + } + if (node.type === "html") { + breakTextGroup(node) + addDiagnostic("unverifiable", "HTML", node, "Raw HTML is not statically projected") + return SKIP + } + if (node.type === "mdxFlowExpression" || node.type === "mdxTextExpression") { + const raw = String((node as Node & { value?: unknown }).value ?? "").trim() + if (!raw || /^\/\*[\s\S]*\*\/$/.test(raw)) return SKIP + const result = readStaticExpression(expressionFrom(node)) + if (result.ok && (typeof result.value === "string" || typeof result.value === "number")) { + addFact("text", String(result.value), node, undefined, undefined, undefined, true) + } else { + breakTextGroup(node) + addDiagnostic( + "unverifiable", + raw, + node, + `Dynamic MDX expression (${result.ok ? "non-text value" : result.syntax})` + ) + } + return SKIP + } + if (node.type !== "mdxJsxFlowElement" && node.type !== "mdxJsxTextElement") return + + const name = String((node as Node & { name?: unknown }).name ?? "") + if (!name) { + inspect({ type: "root", children: childrenOf(node) } as Parent) + return SKIP + } + if (containerElements[name]) { + for (const failure of expressionAttributes(node)) { + addDiagnostic("unverifiable", `${name}.${failure.name}`, node, `Dynamic JSX attribute (${failure.syntax})`) + } + inspect({ type: "root", children: childrenOf(node) } as Parent) + return SKIP + } + if (/^[a-z]/.test(name)) { + breakTextGroup(node) + addDiagnostic("unverifiable", name, node, `Raw HTML element ${name} is not statically projected`) + inspect({ type: "root", children: childrenOf(node) } as Parent) + breakTextGroup(node) + return SKIP + } + + if (name === "Aside" || name === "Callout") { + for (const failure of expressionAttributes(node)) { + addDiagnostic("unverifiable", `${name}.${failure.name}`, node, `Dynamic JSX attribute (${failure.syntax})`) + } + const type = staticAttribute(node, "type") + const title = staticAttribute(node, "title") + if (!type.syntax && !title.syntax) { + const typeText = typeof type.value === "string" ? type.value.toUpperCase() : "NOTE" + const titleText = typeof title.value === "string" && title.value ? `: ${title.value}` : "" + addFact("text", `${typeText}${titleText}`, node) + } + inspect({ type: "root", children: childrenOf(node) } as Parent) + return SKIP + } + + if (name === "CopyText") { + const text = staticAttribute(node, "text") + if (text.syntax || !text.found || typeof text.value !== "string") { + addDiagnostic("unverifiable", "CopyText.text", node, `Dynamic CopyText text (${text.syntax ?? "missing"})`) + } else { + addFact("text", text.value, node) + } + return SKIP + } + + if (name === "ClickToZoom") { + const src = staticAttribute(node, "src") + const alt = staticAttribute(node, "alt") + if (src.syntax || !src.found || typeof src.value !== "string" || alt.syntax) { + addDiagnostic( + "unverifiable", + "ClickToZoom", + node, + `Dynamic image attributes (${src.syntax ?? alt.syntax ?? "missing src"})` + ) + } else { + addFact("text", `(Image: ${typeof alt.value === "string" && alt.value ? alt.value : "Image"})`, node) + } + return SKIP + } + + if (name === "Address") { + const contractUrl = staticAttribute(node, "contractUrl") + const address = staticAttribute(node, "address") + const endLength = staticAttribute(node, "endLength") + if ( + contractUrl.syntax || + typeof contractUrl.value !== "string" || + address.syntax || + (address.found && typeof address.value !== "string") || + endLength.syntax || + (endLength.found && + (typeof endLength.value !== "number" || !Number.isInteger(endLength.value) || endLength.value < 0)) + ) { + addDiagnostic( + "unverifiable", + "Address", + node, + `Dynamic address attributes (${contractUrl.syntax ?? address.syntax ?? endLength.syntax ?? "missing contractUrl"})` + ) + } else { + const urlTail = contractUrl.value.split("/").pop() ?? contractUrl.value + const fullDisplay = typeof address.value === "string" ? address.value : urlTail + const display = + typeof endLength.value === "number" && endLength.value > 0 + ? `${fullDisplay.slice(0, endLength.value + 2)}...${fullDisplay.slice(-endLength.value)}` + : fullDisplay + addFact("link", display, node, contractUrl.value) + } + return SKIP + } + + if (name === "CodeHighlightBlock") { + const code = staticAttribute(node, "code") + const title = staticAttribute(node, "title") + if (title.syntax || (title.found && typeof title.value !== "string")) { + addDiagnostic( + "unverifiable", + "CodeHighlightBlock", + node, + `Dynamic title (${title.syntax ?? "invalid static type"})` + ) + } else if (typeof title.value === "string" && title.value) { + addFact("text", `Code snippet for ${title.value}:`, node) + } + if (typeof code.value === "string") { + addFact("code", code.value, node) + return SKIP + } + const expression = expressionAttribute(node, "code") + const identifier = + expression?.type === "Identifier" && typeof expression.name === "string" ? expression.name : undefined + const importedPath = identifier ? imports.get(identifier) : undefined + const location = sourceLocation(sourcePath) + const target = + importedPath && location + ? resolveProjectFile(path.resolve(path.dirname(location.absolute), importedPath.split("?")[0])) + : null + if (!target) { + addDiagnostic( + "unverifiable", + "CodeHighlightBlock", + node, + `CodeHighlightBlock code target "${importedPath ?? code.syntax ?? "missing"}" could not be statically resolved` + ) + } else { + addFact("code", stripHighlighterComments(fsSync.readFileSync(target.absolute, "utf8")), node) + } + return SKIP + } + + if (name === "CodeSample") { + const src = staticAttribute(node, "src") + const showButtonOnly = staticAttribute(node, "showButtonOnly") + if ( + typeof src.value !== "string" || + !src.value || + showButtonOnly.syntax || + (showButtonOnly.found && typeof showButtonOnly.value !== "boolean") + ) { + addDiagnostic( + "unverifiable", + "CodeSample", + node, + `CodeSample path "${typeof src.value === "string" ? src.value : (src.syntax ?? "missing")}" is not statically resolvable` + ) + return SKIP + } + if (showButtonOnly.value === true) { + addFact( + "link", + `Open ${path.basename(src.value)} in Remix`, + node, + `https://remix.ethereum.org/#url=https://docs.chain.link/${src.value}` + ) + return SKIP + } + const target = [ + path.resolve("public", src.value), + path.resolve(src.value), + path.resolve("src", src.value), + ].reduce>( + (found, candidate) => found ?? resolveProjectFile(candidate), + null + ) + if (!target) { + addDiagnostic( + "unverifiable", + "CodeSample", + node, + `CodeSample path "${src.value}" is missing or escapes the project` + ) + } else { + addFact("code", fsSync.readFileSync(target.absolute, "utf8"), node) + } + return SKIP + } + + if (name in selectorComponents) { + const component = name as keyof typeof selectorComponents + const selector = staticAttribute(node, selectorComponents[component].attribute) + if (typeof selector.value !== "string" || !selector.value) { + addDiagnostic( + "unverifiable", + component, + node, + `${component} selector is dynamic or missing (${selector.syntax ?? "missing"})` + ) + return SKIP + } + const resolution = resolveSelectorTarget(component, selector.value) + if (!resolution.target) { + addDiagnostic( + "unverifiable", + component, + node, + resolution.reason ?? `${component} target could not be resolved` + ) + } else { + includeMarkdown(component, node, resolution.target) + } + return SKIP + } + + if (name === "SchemaFieldsTable") { + const schema = staticAttribute(node, "schema") + const fields = typeof schema.value === "string" ? schemaFields(schema.value) : null + if (!fields) { + addDiagnostic( + "unverifiable", + "SchemaFieldsTable", + node, + typeof schema.value === "string" + ? `SchemaFieldsTable schema "${schema.value}" could not be read from static schema definitions` + : `SchemaFieldsTable schema is dynamic or missing (${schema.syntax ?? "missing"})` + ) + return SKIP + } + addFact("text", "Field", node) + addFact("text", "Type", node) + addFact("text", "Description", node) + for (const field of fields) { + addFact("text", field.field, node) + addFact("text", field.type, node) + addFact("text", field.link ? `${field.description} —` : field.description, node) + if (field.link) addFact("link", field.link.label, node, field.link.href) + } + return SKIP + } + if (name === "Billing") { + addDiagnostic( + "unverifiable", + "Billing", + node, + "Billing content depends on imported fee configuration and runtime calculations" + ) + return SKIP + } + + if (name === "PageTabs") { + const pages = staticAttribute(node, "pages") + const title = staticAttribute(node, "headerTitle") + const description = staticAttribute(node, "headerDescription") + const showHeader = staticAttribute(node, "showHeader") + if (pages.syntax || !pages.found || !Array.isArray(pages.value)) { + addDiagnostic("unverifiable", "PageTabs.pages", node, `Dynamic PageTabs pages (${pages.syntax ?? "missing"})`) + return SKIP + } + if ( + title.syntax || + (title.found && typeof title.value !== "string") || + description.syntax || + (description.found && typeof description.value !== "string") || + showHeader.syntax || + (showHeader.found && typeof showHeader.value !== "boolean") + ) { + addDiagnostic( + "unverifiable", + "PageTabs.header", + node, + `Dynamic PageTabs header (${title.syntax ?? description.syntax ?? showHeader.syntax ?? "invalid static type"})` + ) + return SKIP + } + if (showHeader.value !== false) { + if (!title.found || title.value === true) { + addFact("heading", "Guide Versions", node, undefined, 2) + } else if (typeof title.value === "string" && title.value) { + addFact("heading", title.value, node, undefined, 2) + } + if (typeof description.value === "string" && description.value) addFact("text", description.value, node) + } + for (const entry of pages.value) { + const group = Array.isArray(entry) ? entry : [entry] + if (!group.length || group.some((item) => !item || typeof item !== "object")) { + addDiagnostic("unverifiable", "PageTabs.pages", node, "PageTabs contains a non-static group") + continue + } + const records = group as Record[] + const labels = records.map((item) => item.name).filter((value): value is string => typeof value === "string") + const firstUrl = records[0].url + if (labels.length !== records.length || typeof firstUrl !== "string") { + addDiagnostic("unverifiable", "PageTabs.pages", node, "PageTabs group requires static name and URL values") + continue + } + addFact("link", labels.join(" / "), node, firstUrl) + } + return SKIP + } + + if (name === "Tabs" || name === "TabsContent") { + const tabs: Array<{ key: string; node: Node }> = [] + const panels: Record = {} + for (const child of childrenOf(node)) { + const slot = staticAttribute(child, "slot") + if (slot.syntax || typeof slot.value !== "string") { + addDiagnostic("unverifiable", "Tabs.slot", child, `Dynamic tab slot (${slot.syntax ?? "missing"})`) + continue + } + if (slot.value.startsWith("tab.")) tabs.push({ key: slot.value.slice(4), node: child }) + if (slot.value.startsWith("panel.")) panels[slot.value.slice(6)] = child + } + for (const tab of tabs) { + addFact("heading", nodeVisibleText(tab.node), tab.node, undefined, 3) + const panel = panels[tab.key] + if (panel) { + inspect({ type: "root", children: childrenOf(panel) } as Parent) + } else { + addDiagnostic("unverifiable", `Tabs.panel.${tab.key}`, tab.node, "Tab has no matching static panel") + } + } + return SKIP + } + + if (name === "PackageManagerTabs") { + const slots: Record = {} + for (const child of childrenOf(node)) { + const slot = staticAttribute(child, "slot") + if (slot.syntax || typeof slot.value !== "string") { + addDiagnostic( + "unverifiable", + "PackageManagerTabs.slot", + child, + `Dynamic package slot (${slot.syntax ?? "missing"})` + ) + } else { + slots[slot.value] = child + } + } + for (const packageManager of ["npm", "yarn"]) { + const panel = slots[packageManager] + if (!panel) continue + addFact("heading", packageManager, panel, undefined, 3) + inspect({ type: "root", children: childrenOf(panel) } as Parent) + } + return SKIP + } + + if (name === "Accordion") { + const title = staticAttribute(node, "title") + const number = staticAttribute(node, "number") + if ( + title.syntax || + typeof title.value !== "string" || + number.syntax || + (number.found && typeof number.value !== "number") + ) { + addDiagnostic( + "unverifiable", + "Accordion", + node, + `Dynamic accordion heading (${title.syntax ?? number.syntax ?? "missing title"})` + ) + } else { + const prefix = number.found ? `${number.value}. ` : "" + addFact("heading", `${prefix}${title.value}`, node, undefined, 3) + } + inspect({ type: "root", children: childrenOf(node) } as Parent) + return SKIP + } + + if (name === "CodeHighlightBlockMulti") { + const result = languageKeys(node) + if (result.syntax) { + addDiagnostic( + "unverifiable", + "CodeHighlightBlockMulti.languages", + node, + `Dynamic languages (${result.syntax})` + ) + } else { + result.keys.forEach((key) => languages.add(key)) + for (const code of result.codes ?? []) { + if (code.value !== undefined) { + addFact("code", code.value, node, undefined, undefined, code.key) + continue + } + const importedPath = code.identifier ? imports.get(code.identifier) : undefined + const location = sourceLocation(sourcePath) + const target = + importedPath && location + ? resolveProjectFile(path.resolve(path.dirname(location.absolute), importedPath.split("?")[0])) + : null + if (!target) { + addDiagnostic( + "unverifiable", + `CodeHighlightBlockMulti.languages.${code.key}`, + node, + `Imported code identifier "${code.identifier ?? "missing"}" could not be resolved through a contained static import` + ) + continue + } + try { + addFact( + "code", + stripHighlighterComments(fsSync.readFileSync(target.absolute, "utf8")), + node, + undefined, + undefined, + code.key + ) + } catch (error) { + addDiagnostic( + "unverifiable", + `CodeHighlightBlockMulti.languages.${code.key}`, + node, + `Imported code target ${target.relative} could not be read: ${ + error instanceof Error ? error.message : "unknown error" + }` + ) + } + } + } + return SKIP + } + + addDiagnostic("unsupported", name, node, `Unsupported MDX component ${name}`) + return SKIP + }) + } + + inspect(tree) + return { facts: coalesceTextFacts(facts), diagnostics, languages: [...languages].sort() } +} + +function analyzeObservedMarkdown(markdown: string): ObservedAnalysis { + let tree: Node + try { + tree = processor.parse(markdown) + } catch (error) { + return { + facts: [], + residuals: [ + { + name: "Markdown parse error", + line: 1, + text: markdown, + reason: error instanceof Error ? error.message : "Served Markdown could not be parsed", + }, + ], + } + } + const facts: GroupedFact[] = [] + const residuals: ObservedAnalysis["residuals"] = [] + const parentByNode = new WeakMap() + const groupByBlock = new WeakMap() + const segmentByBlock = new WeakMap() + let groupOrdinal = 0 + + visit(tree, (node, _index, parent) => { + if (parent) parentByNode.set(node, parent) + }) + + const inlineBlock = (node: Node): Node | null => { + let current: Node | undefined = node + while (current) { + if ( + current.type === "paragraph" || + current.type === "tableCell" || + current.type === "mdxJsxFlowElement" || + current.type === "mdxJsxTextElement" + ) { + return current + } + current = parentByNode.get(current) + } + return null + } + + const textGroup = (node: Node): string | undefined => { + const block = inlineBlock(node) + if (!block) return undefined + let group = groupByBlock.get(block) + if (group === undefined) { + group = ++groupOrdinal + groupByBlock.set(block, group) + } + return `${group}:${segmentByBlock.get(block) ?? 0}` + } + + const breakTextGroup = (node: Node) => { + const ownBlock = inlineBlock(node) + const block = ownBlock === node ? inlineBlock(parentByNode.get(node) ?? node) : ownBlock + if (block) segmentByBlock.set(block, (segmentByBlock.get(block) ?? 0) + 1) + } + + const addFact = (fact: ObservedFact, node: Node, rawValue?: string) => { + const group = rawValue === undefined ? undefined : textGroup(node) + if (fact.kind === "text" && !fact.value && group) { + const previous = facts[facts.length - 1] + if (previous?.kind === "text" && previous.group === group) { + previous.rawValue = `${previous.rawValue ?? previous.value}${rawValue}` + } + return + } + facts.push({ ...fact, ...(rawValue === undefined ? {} : { group, rawValue }) }) + } + + const exactText = (node: Node): string => { + const start = node.position?.start.offset + const end = node.position?.end.offset + return typeof start === "number" && typeof end === "number" + ? markdown.slice(start, end) + : lineText(markdown.split(/\r?\n/), nodeLine(node)) + } + + visit(tree, (node) => { + if (node.type === "heading") { + const value = normalizeText(nodeVisibleText(node)) + const depth = "depth" in node && typeof node.depth === "number" ? node.depth : undefined + if (value) addFact({ kind: "heading", value, depth }, node) + visit(node, "link", (link) => { + const label = normalizeText(nodeVisibleText(link)) + if (label) { + addFact({ kind: "link", value: label, url: String((link as Node & { url?: unknown }).url ?? "") }, link) + } + return SKIP + }) + return SKIP + } + if (node.type === "link") { + const value = normalizeText(nodeVisibleText(node)) + if (value) addFact({ kind: "link", value, url: String((node as Node & { url?: unknown }).url ?? "") }, node) + return SKIP + } + if (node.type === "image") { + const alt = String((node as Node & { alt?: unknown }).alt ?? "Image") || "Image" + addFact({ kind: "text", value: `(Image: ${alt})` }, node) + return SKIP + } + if (node.type === "code") { + const value = normalizeText(String((node as Node & { value?: unknown }).value ?? "")) + if (value) addFact({ kind: "code", value }, node) + return SKIP + } + if (node.type === "inlineCode" || node.type === "text") { + const raw = String((node as Node & { value?: unknown }).value ?? "") + const value = normalizeText(raw) + addFact({ kind: "text", value }, node, raw) + return + } + if ( + node.type === "html" || + node.type === "mdxJsxFlowElement" || + node.type === "mdxJsxTextElement" || + node.type === "mdxFlowExpression" || + node.type === "mdxTextExpression" || + node.type === "mdxjsEsm" + ) { + breakTextGroup(node) + residuals.push({ + name: + node.type === "html" + ? "HTML" + : node.type === "mdxJsxFlowElement" || node.type === "mdxJsxTextElement" + ? String((node as Node & { name?: unknown }).name ?? "MDX") + : node.type, + line: nodeLine(node), + text: exactText(node), + reason: "Served Markdown contains residual runtime syntax", + }) + return SKIP + } + }) + + return { facts: coalesceTextFacts(facts), residuals } +} + +function factMatches(source: SourceFact, observed: ObservedFact): boolean { + return ( + source.kind === observed.kind && + source.value === observed.value && + (source.kind !== "heading" || source.depth === observed.depth) && + (source.kind !== "link" || source.url === observed.url) + ) +} +function frontmatterTitle(source: string): { title?: string; line: number } { + if (!source.startsWith("---")) return { line: 1 } + const end = source.indexOf("\n---", 3) + if (end < 0) return { line: 1 } + const frontmatter = source.slice(3, end) + const match = /^\s*title:\s*"?(.+?)"?\s*$/m.exec(frontmatter) + if (!match) return { line: 1 } + const line = source.slice(0, 3 + (match.index ?? 0)).split(/\r?\n/).length + return { title: match[1], line } +} + +function expectedCanonicalSource( + requestPath: string, + sourcePath: string, + routeKind: MarkdownArtifact["routeKind"] +): string { + if (routeKind === "special") return `${SITE_BASE}/${requestPath}` + const relative = sourcePath + .split(path.sep) + .join("/") + .replace(/^.*?src\/content\//, "") + const section = requestPath.split("/")[0] + let slug = sourceRoute(relative) + if (!slug.startsWith(section)) slug = `${section}/${slug}` + return `${SITE_BASE}/${slug}` +} + +function inspectNormalEnvelope( + requestPath: string, + sourcePath: string, + source: string, + artifact: MarkdownArtifact, + servedLines: string[], + lang: string, + exceptions: readonly FidelityException[] +): FidelityFinding[] { + const frontmatter = frontmatterTitle(source) + const expectedTitle = frontmatter.title || path.basename(sourcePath, path.extname(sourcePath)) + const expectedSource = expectedCanonicalSource(requestPath, sourcePath, artifact.routeKind) + const directiveLine = servedLines[2]?.startsWith("Last Updated: ") ? 4 : 3 + const fields = [ + { name: "title", expected: `# ${expectedTitle}`, actual: servedLines[0], sourceLine: frontmatter.line }, + { name: "source", expected: `Source: ${expectedSource}`, actual: servedLines[1], sourceLine: null }, + { name: "directive", expected: LLMS_DIRECTIVE, actual: servedLines[directiveLine], sourceLine: null }, + ] as const + + return fields.map((field) => { + const present = field.actual === field.expected + return withException( + { + path: requestPath, + status: present ? "present" : "missing", + occurrence: `lang=${lang};envelope=${JSON.stringify({ field: field.name, expected: field.expected })};duplicate=1`, + sourcePath, + sourceLine: field.sourceLine, + ...(field.sourceLine === null ? {} : { sourceText: lineText(source.split(/\r?\n/), field.sourceLine) }), + ...(lang === "default" ? {} : { lang }), + name: `Envelope.${field.name}`, + expected: field.expected, + ...(present ? {} : { reason: `Normal artifact envelope ${field.name} is missing or changed` }), + display: shortValue(field.expected), + }, + exceptions + ) + }) +} + +function shortValue(value: string): string { + return value.length <= 80 ? value : `${value.slice(0, 77)}...` +} + +function factSemantic(fact: SourceFact): string { + return JSON.stringify({ + kind: fact.kind, + value: fact.value, + ...(fact.url === undefined ? {} : { url: fact.url }), + ...(fact.depth === undefined ? {} : { depth: fact.depth }), + }) +} + +function occurrenceForFact(fact: SourceFact, lang: string, duplicate: number): string { + return `lang=${lang};fact=${factSemantic(fact)};duplicate=${duplicate}` +} + +function diagnosticSemantic(diagnostic: Pick): string { + return JSON.stringify({ component: diagnostic.name, reason: diagnostic.reason }) +} + +function occurrenceForDiagnostic(diagnostic: SourceDiagnostic, lang: string, duplicate: number): string { + return `lang=${lang};diagnostic=${diagnosticSemantic(diagnostic)};duplicate=${duplicate}` +} + +function residualSemantic(residual: ObservedAnalysis["residuals"][number]): string { + return JSON.stringify({ component: residual.name, reason: residual.reason, servedText: residual.text }) +} + +export function withException(finding: FidelityFinding, exceptions: readonly FidelityException[]): FidelityFinding { + if (finding.status === "present") return finding + const exception = exceptions.find( + (candidate) => + candidate.path === finding.path && + candidate.occurrence === finding.occurrence && + candidate.status === finding.status && + candidate.reason.trim().length > 0 && + candidate.owner.trim().length > 0 && + candidate.removalCondition.trim().length > 0 + ) + return exception + ? { + ...finding, + exception: { + reason: exception.reason, + owner: exception.owner, + removalCondition: exception.removalCondition, + }, + } + : finding +} + +export function compareSourceToArtifact( + requestPath: string, + sourcePath: string, + source: string, + artifact: MarkdownArtifact, + lang = "default", + exceptions: readonly FidelityException[] = markdownFidelityExceptions +): FidelityFinding[] { + const analysis = analyzeSourceMarkdown(source, sourcePath) + const servedLines = artifact.markdown.split(/\r?\n/) + const directiveIndex = servedLines.findIndex((line) => line === LLMS_DIRECTIVE) + const servedBody = directiveIndex >= 0 ? servedLines.slice(directiveIndex + 1).join("\n") : artifact.markdown + const servedLineOffset = directiveIndex >= 0 ? directiveIndex + 1 : 0 + const observed = analyzeObservedMarkdown(servedBody) + const findings: FidelityFinding[] = + artifact.sourcePath && !path.isAbsolute(artifact.sourcePath) + ? inspectNormalEnvelope(requestPath, sourcePath, source, artifact, servedLines, lang, exceptions) + : [] + let observedIndex = 0 + const presentFactDuplicates = new Map() + const missingFactDuplicates = new Map() + const diagnosticDuplicates = new Map() + const residualDuplicates = new Map() + + for (const fact of analysis.facts.filter( + (candidate) => lang === "default" || !candidate.variant || candidate.variant === lang + )) { + const semantic = factSemantic(fact) + let matchedAt = -1 + for (let index = observedIndex; index < observed.facts.length; index += 1) { + if (factMatches(fact, observed.facts[index])) { + matchedAt = index + break + } + } + const duplicateMap = matchedAt >= 0 ? presentFactDuplicates : missingFactDuplicates + const duplicate = (duplicateMap.get(semantic) ?? 0) + 1 + duplicateMap.set(semantic, duplicate) + const finding: FidelityFinding = { + ...(matchedAt >= 0 ? {} : { reason: "Expected source fact is missing from served Markdown" }), + path: requestPath, + status: matchedAt >= 0 ? "present" : "missing", + occurrence: occurrenceForFact(fact, lang, duplicate), + sourcePath: fact.sourcePath ?? sourcePath, + sourceLine: fact.line, + sourceText: fact.sourceText, + ...(lang === "default" ? {} : { lang }), + expected: fact.kind === "link" ? `${fact.value} -> ${fact.url}` : fact.value, + display: shortValue(fact.kind === "link" ? `${fact.value} -> ${fact.url}` : fact.value), + } + findings.push(withException(finding, exceptions)) + if (matchedAt >= 0) observedIndex = matchedAt + 1 + } + + for (const diagnostic of analysis.diagnostics) { + const semantic = diagnosticSemantic(diagnostic) + const duplicate = (diagnosticDuplicates.get(semantic) ?? 0) + 1 + diagnosticDuplicates.set(semantic, duplicate) + findings.push( + withException( + { + path: requestPath, + status: diagnostic.status, + occurrence: occurrenceForDiagnostic(diagnostic, lang, duplicate), + sourcePath: diagnostic.sourcePath ?? sourcePath, + sourceLine: diagnostic.line, + sourceText: diagnostic.sourceText, + ...(lang === "default" ? {} : { lang }), + name: diagnostic.name, + reason: diagnostic.reason, + }, + exceptions + ) + ) + } + + observed.residuals.forEach((residual) => { + const semantic = residualSemantic(residual) + const duplicate = (residualDuplicates.get(semantic) ?? 0) + 1 + residualDuplicates.set(semantic, duplicate) + findings.push( + withException( + { + path: requestPath, + status: "unverifiable", + occurrence: `lang=${lang};residual=${semantic};duplicate=${duplicate}`, + sourcePath, + sourceLine: null, + ...(lang === "default" ? {} : { lang }), + name: residual.name, + reason: residual.reason, + servedLine: residual.line + servedLineOffset, + servedText: residual.text, + display: shortValue(residual.text), + }, + exceptions + ) + ) + }) + + return findings +} + +export function findingIdentity(finding: FidelityFinding): string { + return JSON.stringify({ + path: finding.path, + status: finding.status, + language: finding.lang ?? "default", + occurrence: finding.occurrence, + ...(finding.name === undefined ? {} : { component: finding.name }), + ...(finding.expected === undefined ? {} : { expected: finding.expected }), + ...(finding.reason === undefined ? {} : { reason: finding.reason }), + ...(finding.servedText === undefined ? {} : { servedText: finding.servedText }), + }) +} + +export function blockingFindings( + mode: RunMode, + findings: readonly FidelityFinding[], + baselineIdentities: ReadonlySet = new Set() +): FidelityFinding[] { + return findings.filter( + (finding) => + finding.status !== "present" && + !finding.exception && + (mode === "focused" || !baselineIdentities.has(findingIdentity(finding))) + ) +} + +export function determineExitCode( + mode: RunMode, + findings: readonly FidelityFinding[], + baselineIdentities: ReadonlySet = new Set() +): 0 | 1 { + return blockingFindings(mode, findings, baselineIdentities).length > 0 ? 1 : 0 +} + +async function loadBaseline(): Promise> { + const baseline: unknown = JSON.parse(await fs.readFile(DEFAULT_BASELINE_PATH, "utf8")) + if ( + typeof baseline !== "object" || + baseline === null || + !("version" in baseline) || + baseline.version !== 1 || + !("identities" in baseline) || + !Array.isArray(baseline.identities) || + !baseline.identities.every((identity) => typeof identity === "string") + ) { + throw new Error("Invalid Markdown fidelity baseline") + } + return new Set(baseline.identities) +} + +function compareFinding(left: FidelityFinding, right: FidelityFinding): number { + const leftIdentity = findingIdentity(left) + const rightIdentity = findingIdentity(right) + return leftIdentity < rightIdentity ? -1 : leftIdentity > rightIdentity ? 1 : 0 +} + +export function createReport(pathCount: number, findings: readonly FidelityFinding[]): FidelityReport { + const counts: Record = { + present: 0, + missing: 0, + unsupported: 0, + unverifiable: 0, + degraded: 0, + } + findings.forEach((finding) => { + counts[finding.status] += 1 + }) + return { pathCount, counts, findings: [...findings].sort(compareFinding) } +} + +export function serializeReport(report: FidelityReport): string { + return `${JSON.stringify(report, null, 2)}\n` +} + +function cliRequestPath(value: string): string | null { + if (path.isAbsolute(value) || value.includes("\\")) return null + const segments = value.split("/") + if (segments.some((segment) => !segment || segment === "." || segment === "..")) return null + + if (value.startsWith("src/content/")) { + if (!/\.(?:md|mdx)$/i.test(value)) return null + const withoutExtension = value.replace(/\.(?:md|mdx)$/i, "") + if (/\.(?:md|mdx)$/i.test(withoutExtension)) return null + const relativePath = value.slice("src/content/".length) + return normalizeMarkdownPath(sourceRoute(relativePath)) + } + + if (value === "src/content" || value.startsWith("src/") || /\.(?:md|mdx)$/i.test(value)) return null + return normalizeMarkdownPath(value) +} + +export function parseCliArguments(argv: readonly string[]): { mode: RunMode; paths: string[] } { + const paths: string[] = [] + for (let index = 0; index < argv.length; index += 1) { + if (argv[index] !== "--path") throw new Error(`Unknown argument: ${argv[index]}`) + const value = argv[index + 1] + if (!value || value.startsWith("--")) throw new Error("--path requires a value") + const normalized = cliRequestPath(value) + if (!normalized) throw new Error(`Invalid Markdown path: ${value}`) + paths.push(normalized) + index += 1 + } + return paths.length ? { mode: "focused", paths: [...new Set(paths)].sort() } : { mode: "full-corpus", paths: [] } +} + +function sourceRoute(relativePath: string): string { + const withoutExtension = relativePath + .replace(/\.(?:md|mdx)$/i, "") + .split(path.sep) + .join("/") + return withoutExtension.endsWith("/index") ? withoutExtension.slice(0, -"/index".length) : withoutExtension +} + +export async function collectCorpusPaths(contentRoot = CONTENT_ROOT): Promise { + const routes = new Set([...MARKDOWN_REDIRECT_PATHS, "cre-templates"]) + + const walk = async (directory: string): Promise => { + const entries = await fs.readdir(directory, { withFileTypes: true }) + entries.sort((left, right) => left.name.localeCompare(right.name)) + for (const entry of entries) { + const absolute = path.join(directory, entry.name) + if (entry.isDirectory()) { + await walk(absolute) + } else if (/\.(?:md|mdx)$/i.test(entry.name) && !/^llms-full/i.test(entry.name)) { + routes.add(sourceRoute(path.relative(contentRoot, absolute))) + } + } + } + + await walk(contentRoot) + for (const route of [...routes]) { + if (route.startsWith("cre/") && (route.endsWith("-go") || route.endsWith("-ts"))) { + routes.add(route.slice(0, -3)) + } + } + return [...routes].sort() +} + +function safeSourcePath(sourcePath: string): { absolute: string; relative: string } | null { + const absolute = path.isAbsolute(sourcePath) ? path.resolve(sourcePath) : path.resolve(CONTENT_ROOT, sourcePath) + if (absolute !== CONTENT_ROOT && !absolute.startsWith(`${CONTENT_ROOT}${path.sep}`)) return null + return { absolute, relative: path.relative(process.cwd(), absolute).split(path.sep).join("/") } +} + +export function inspectSyntheticArtifact( + requestPath: string, + artifact: MarkdownArtifact, + exceptions: readonly FidelityException[] = markdownFidelityExceptions +): { findings: FidelityFinding[]; targetPaths: string[] } { + const finding = ( + status: "present" | "missing" | "unverifiable", + occurrence: string, + expected: string, + reason?: string + ) => + withException( + { + path: requestPath, + status, + occurrence, + sourceLine: null, + expected, + ...(reason ? { reason } : {}), + }, + exceptions + ) + + if (artifact.routeKind === "redirect") { + const target = (MARKDOWN_REDIRECT_TARGETS as Record)[requestPath] + if (!target) { + return { + findings: [ + finding( + "unverifiable", + "lang=default;synthetic=redirect;configuration", + requestPath, + "Redirect route has no independent checker target" + ), + ], + targetPaths: [], + } + } + const label = target + const url = `/${target}.md` + const observed = analyzeObservedMarkdown(artifact.markdown) + const present = observed.facts.some((fact) => fact.kind === "link" && fact.value === label && fact.url === url) + return { + findings: [ + finding( + present ? "present" : "missing", + `lang=default;synthetic=redirect;${label} -> ${url}`, + `${label} -> ${url}`, + present ? undefined : "Redirect artifact does not contain its exact current target link" + ), + ], + targetPaths: [target], + } + } + + if (artifact.routeKind === "selector") { + const targets = [`${requestPath}-go`, `${requestPath}-ts`] + const labels = ["Go", "TypeScript"] + const lines = artifact.markdown.split(/\r?\n/).map((line) => line.trim()) + return { + findings: targets.map((target, index) => { + const expectedLine = `- ${labels[index]}: /${target}.md` + const present = lines.includes(expectedLine) + return finding( + present ? "present" : "missing", + `lang=default;synthetic=selector;${labels[index]} -> /${target}.md`, + `${labels[index]} -> /${target}.md`, + present ? undefined : `Selector artifact is missing exact entry "${expectedLine}"` + ) + }), + targetPaths: targets, + } + } + + return { + findings: [ + finding( + "unverifiable", + `lang=default;synthetic=${artifact.routeKind};source`, + requestPath, + "Source-less artifact has no independent fidelity contract" + ), + ], + targetPaths: [], + } +} + +async function checkPathInternal( + requestPath: string, + ancestorPaths: ReadonlySet, + globallyScheduledPaths?: ReadonlySet, + globallyVisitedPaths?: Set +): Promise { + globallyVisitedPaths?.add(requestPath) + const nextAncestors = new Set(ancestorPaths) + nextAncestors.add(requestPath) + const defaultArtifact = await buildMarkdownArtifact(requestPath) + if (!defaultArtifact) { + return [ + withException( + { + path: requestPath, + status: "missing", + occurrence: "lang=default;artifact", + sourceLine: null, + reason: "No Markdown artifact was built", + }, + markdownFidelityExceptions + ), + ] + } + + const degraded = (artifact: MarkdownArtifact, lang: string): FidelityFinding[] => { + if (artifact.transformMode === "normal") return [] + const artifactSource = artifact.sourcePath ? safeSourcePath(artifact.sourcePath)?.relative : undefined + return [ + withException( + { + path: requestPath, + status: "degraded", + occurrence: `lang=${lang};transform=${artifact.transformMode}`, + sourcePath: artifactSource, + sourceLine: null, + ...(lang === "default" ? {} : { lang }), + reason: `${artifact.routeKind} route used ${artifact.transformMode} output`, + }, + markdownFidelityExceptions + ), + ] + } + + if (!defaultArtifact.sourcePath) { + const inspection = inspectSyntheticArtifact(requestPath, defaultArtifact) + const findings = [...degraded(defaultArtifact, "default"), ...inspection.findings] + for (const targetPath of inspection.targetPaths) { + if (nextAncestors.has(targetPath)) { + findings.push( + withException( + { + path: requestPath, + status: "unverifiable", + occurrence: `lang=default;synthetic-target-cycle=${targetPath}`, + sourceLine: null, + name: targetPath, + reason: "Synthetic route target evaluation forms a cycle", + }, + markdownFidelityExceptions + ) + ) + } else if (!globallyScheduledPaths?.has(targetPath) && !globallyVisitedPaths?.has(targetPath)) { + findings.push( + ...(await checkPathInternal(targetPath, nextAncestors, globallyScheduledPaths, globallyVisitedPaths)) + ) + } + } + return findings + } + const sourceLocation = safeSourcePath(defaultArtifact.sourcePath) + if (!sourceLocation) { + return [ + withException( + { + path: requestPath, + status: "unverifiable", + occurrence: "lang=default;source-path", + sourceLine: null, + name: defaultArtifact.sourcePath, + reason: "Artifact source path escapes src/content", + }, + markdownFidelityExceptions + ), + ] + } + + const source = await fs.readFile(sourceLocation.absolute, "utf8") + const analysis = analyzeSourceMarkdown(source, sourceLocation.relative) + const variants = ["default", ...analysis.languages] + const findings: FidelityFinding[] = [] + for (const lang of variants) { + const artifact = lang === "default" ? defaultArtifact : await buildMarkdownArtifact(requestPath, { lang }) + if (!artifact) { + findings.push( + withException( + { + path: requestPath, + status: "missing", + occurrence: `lang=${lang};artifact`, + sourcePath: sourceLocation.relative, + sourceLine: null, + ...(lang === "default" ? {} : { lang }), + reason: "No Markdown artifact was built for static language variant", + }, + markdownFidelityExceptions + ) + ) + continue + } + findings.push(...degraded(artifact, lang)) + findings.push( + ...compareSourceToArtifact( + requestPath, + sourceLocation.relative, + source, + artifact, + lang, + markdownFidelityExceptions + ) + ) + } + return findings +} + +export async function checkPath( + requestPath: string, + options: { globallyScheduledPaths?: ReadonlySet; globallyVisitedPaths?: Set } = {} +): Promise { + return checkPathInternal(requestPath, new Set(), options.globallyScheduledPaths, options.globallyVisitedPaths) +} + +export async function runMarkdownFidelity( + argv: readonly string[], + options: { reportPath?: string; contentRoot?: string } = {} +): Promise<{ report: FidelityReport; exitCode: 0 | 1; blockers: FidelityFinding[] }> { + const parsed = parseCliArguments(argv) + const baselineIdentities = parsed.mode === "full-corpus" ? await loadBaseline() : new Set() + const paths = parsed.mode === "focused" ? parsed.paths : await collectCorpusPaths(options.contentRoot) + const findings: FidelityFinding[] = [] + const globallyScheduledPaths = parsed.mode === "full-corpus" ? new Set(paths) : undefined + const globallyVisitedPaths = parsed.mode === "full-corpus" ? new Set() : undefined + for (const requestPath of paths) { + try { + findings.push(...(await checkPathInternal(requestPath, new Set(), globallyScheduledPaths, globallyVisitedPaths))) + } catch (error) { + const reason = (error instanceof Error ? error.message : "Checker failed").split(process.cwd()).join(".") + findings.push( + withException( + { + path: requestPath, + status: "unverifiable", + occurrence: "lang=default;checker-error", + sourceLine: null, + reason, + }, + markdownFidelityExceptions + ) + ) + } + } + const report = createReport(paths.length, findings) + const reportPath = options.reportPath ?? DEFAULT_REPORT_PATH + await fs.mkdir(path.dirname(reportPath), { recursive: true }) + await fs.writeFile(reportPath, serializeReport(report), "utf8") + const blockers = blockingFindings(parsed.mode, report.findings, baselineIdentities) + return { report, exitCode: blockers.length > 0 ? 1 : 0, blockers } +} + +async function main(): Promise { + const { report, exitCode, blockers } = await runMarkdownFidelity(process.argv.slice(2)) + const counts = Object.entries(report.counts) + .map(([status, count]) => `${status}=${count}`) + .join(" ") + console.log(`Markdown fidelity: paths=${report.pathCount} ${counts}`) + if (blockers.length > 0) { + console.error(`Markdown fidelity failed: ${blockers.length} new finding(s)`) + for (const finding of blockers) { + const detail = finding.reason ?? finding.expected ?? finding.occurrence + console.error(`${finding.path}: ${finding.status} ${detail}`) + } + } + process.exitCode = exitCode +} + +if (process.argv[1] && path.resolve(process.argv[1]) === fileURLToPath(import.meta.url)) { + main().catch((error: unknown) => { + console.error(error instanceof Error ? error.message : error) + process.exitCode = 1 + }) +} diff --git a/src/scripts/markdown-fidelity-baseline.json b/src/scripts/markdown-fidelity-baseline.json new file mode 100644 index 00000000000..a040af87d2b --- /dev/null +++ b/src/scripts/markdown-fidelity-baseline.json @@ -0,0 +1,21134 @@ +{ + "version": 1, + "identities": [ + "{\"path\":\"ace/beta-scope\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE\\\"};duplicate=1\",\"expected\":\"CRE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/beta-scope\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TRM Wallet Screening\\\"};duplicate=1\",\"expected\":\"TRM Wallet Screening\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/beta-scope\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/beta-scope\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/concepts/reporting\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Platform UI\\\"};duplicate=1\",\"expected\":\"Platform UI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/concepts/reporting\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/reference/cross-chain-identity-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainlink-ace repository\\\"};duplicate=1\",\"expected\":\"chainlink-ace repository\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/reference/cross-chain-identity-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cross-chain-identity package\\\"};duplicate=1\",\"expected\":\"cross-chain-identity package\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/reference/cross-chain-identity-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/reference/cross-chain-identity-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainlink-ace repository\\\"};duplicate=1\",\"expected\":\"chainlink-ace repository\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"policies source code\\\"};duplicate=1\",\"expected\":\"policies source code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"policy-management docs\\\"};duplicate=1\",\"expected\":\"policy-management docs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"policy-management package\\\"};duplicate=1\",\"expected\":\"policy-management package\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/reference/policy-management-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"10344971235874465080\\\"};duplicate=1\",\"expected\":\"10344971235874465080\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"11155111\\\"};duplicate=1\",\"expected\":\"11155111\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"137\\\"};duplicate=1\",\"expected\":\"137\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"15971525489660198786\\\"};duplicate=1\",\"expected\":\"15971525489660198786\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16281711391670634445\\\"};duplicate=1\",\"expected\":\"16281711391670634445\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"3478487238524512106\\\"};duplicate=1\",\"expected\":\"3478487238524512106\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4051577828743386545\\\"};duplicate=1\",\"expected\":\"4051577828743386545\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"421614\\\"};duplicate=1\",\"expected\":\"421614\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"42161\\\"};duplicate=1\",\"expected\":\"42161\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"43113\\\"};duplicate=1\",\"expected\":\"43113\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"43114\\\"};duplicate=1\",\"expected\":\"43114\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4949039107694359620\\\"};duplicate=1\",\"expected\":\"4949039107694359620\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"5009297550715157269\\\"};duplicate=1\",\"expected\":\"5009297550715157269\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"6433500567565415381\\\"};duplicate=1\",\"expected\":\"6433500567565415381\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"80002\\\"};duplicate=1\",\"expected\":\"80002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"84532\\\"};duplicate=1\",\"expected\":\"84532\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"8453\\\"};duplicate=1\",\"expected\":\"8453\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Mainnet\\\"};duplicate=1\",\"expected\":\"Arbitrum Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Fuji\\\"};duplicate=1\",\"expected\":\"Avalanche Fuji\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Mainnet\\\"};duplicate=1\",\"expected\":\"Avalanche Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base Mainnet\\\"};duplicate=1\",\"expected\":\"Base Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base Sepolia\\\"};duplicate=1\",\"expected\":\"Base Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain ID\\\"};duplicate=1\",\"expected\":\"Chain ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain ID\\\"};duplicate=2\",\"expected\":\"Chain ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain Selector\\\"};duplicate=1\",\"expected\":\"Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain Selector\\\"};duplicate=2\",\"expected\":\"Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Mainnet\\\"};duplicate=1\",\"expected\":\"Ethereum Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Sepolia\\\"};duplicate=1\",\"expected\":\"Ethereum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network\\\"};duplicate=1\",\"expected\":\"Network\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network\\\"};duplicate=2\",\"expected\":\"Network\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Amoy\\\"};duplicate=1\",\"expected\":\"Polygon Amoy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Mainnet\\\"};duplicate=1\",\"expected\":\"Polygon Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=10\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=11\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=12\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=13\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=14\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=15\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=16\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=17\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=18\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=19\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=20\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=3\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=4\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=5\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=6\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=7\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=8\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=9\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=1\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=10\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=2\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=3\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=4\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=5\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=6\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=7\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=8\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=9\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=1\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=10\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=2\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=3\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=4\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=5\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=6\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=7\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=8\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=9\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=1\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=2\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=1\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=2\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=1\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=10\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=11\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=12\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=13\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=14\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=15\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=16\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=17\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=18\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=19\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=2\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=20\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=21\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=22\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=23\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=24\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=25\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=26\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=27\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=28\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=29\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=3\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=30\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=4\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=5\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=6\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=7\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=8\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=9\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=1\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=2\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=3\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=4\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=5\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=6\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=1\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=2\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=1\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=10\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=11\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=12\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=2\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=3\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=4\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=5\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=6\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=7\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=8\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"ace/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=9\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"any-api/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CodeSample\\\",\\\"reason\\\":\\\"CodeSample path \\\\\\\"/samples/APIRequests/APIConsumer.sol\\\\\\\" is missing or escapes the project\\\"};duplicate=1\",\"component\":\"CodeSample\",\"reason\":\"CodeSample path \\\"/samples/APIRequests/APIConsumer.sol\\\" is missing or escapes the project\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Ethabiencode\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\\\"};duplicate=1\",\"expected\":\"Ethabiencode -> /chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Ethabiencode\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\\\"};duplicate=2\",\"expected\":\"Ethabiencode -> /chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Ethabiencode\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\\\"};duplicate=3\",\"expected\":\"Ethabiencode -> /chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Ethabiencode\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\\\"};duplicate=4\",\"expected\":\"Ethabiencode -> /chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Ethabiencode\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\\\"};duplicate=5\",\"expected\":\"Ethabiencode -> /chainlink-nodes/oracle-jobs/all-tasks/#eth-abi-encode-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Http\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#http-task\\\"};duplicate=1\",\"expected\":\"Http -> /chainlink-nodes/oracle-jobs/all-tasks/#http-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Http\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#http-task\\\"};duplicate=2\",\"expected\":\"Http -> /chainlink-nodes/oracle-jobs/all-tasks/#http-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Http\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#http-task\\\"};duplicate=3\",\"expected\":\"Http -> /chainlink-nodes/oracle-jobs/all-tasks/#http-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Http\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#http-task\\\"};duplicate=4\",\"expected\":\"Http -> /chainlink-nodes/oracle-jobs/all-tasks/#http-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Http\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#http-task\\\"};duplicate=5\",\"expected\":\"Http -> /chainlink-nodes/oracle-jobs/all-tasks/#http-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JSONPath expression\\\",\\\"url\\\":\\\"https://jsonpath.com/\\\"};duplicate=1\",\"expected\":\"JSONPath expression -> https://jsonpath.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JSONPath expression\\\",\\\"url\\\":\\\"https://jsonpath.com/\\\"};duplicate=2\",\"expected\":\"JSONPath expression -> https://jsonpath.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JSONPath expression\\\",\\\"url\\\":\\\"https://jsonpath.com/\\\"};duplicate=3\",\"expected\":\"JSONPath expression -> https://jsonpath.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JSONPath expression\\\",\\\"url\\\":\\\"https://jsonpath.com/\\\"};duplicate=4\",\"expected\":\"JSONPath expression -> https://jsonpath.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JSONPath expression\\\",\\\"url\\\":\\\"https://jsonpath.com/\\\"};duplicate=5\",\"expected\":\"JSONPath expression -> https://jsonpath.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JsonParse\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\\\"};duplicate=1\",\"expected\":\"JsonParse -> /chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JsonParse\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\\\"};duplicate=2\",\"expected\":\"JsonParse -> /chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JsonParse\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\\\"};duplicate=3\",\"expected\":\"JsonParse -> /chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JsonParse\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\\\"};duplicate=4\",\"expected\":\"JsonParse -> /chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JsonParse\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\\\"};duplicate=5\",\"expected\":\"JsonParse -> /chainlink-nodes/oracle-jobs/all-tasks/#json-parse-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Multiply\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#multiply-task\\\"};duplicate=1\",\"expected\":\"Multiply -> /chainlink-nodes/oracle-jobs/all-tasks/#multiply-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Multiply\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/all-tasks/#multiply-task\\\"};duplicate=2\",\"expected\":\"Multiply -> /chainlink-nodes/oracle-jobs/all-tasks/#multiply-task\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"/chainlink-nodes/job-specs/direct-request-get-bool\\\"};duplicate=1\",\"expected\":\"here -> /chainlink-nodes/job-specs/direct-request-get-bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"/chainlink-nodes/job-specs/direct-request-get-bytes\\\"};duplicate=1\",\"expected\":\"here -> /chainlink-nodes/job-specs/direct-request-get-bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"/chainlink-nodes/job-specs/direct-request-get-int256\\\"};duplicate=1\",\"expected\":\"here -> /chainlink-nodes/job-specs/direct-request-get-int256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"/chainlink-nodes/job-specs/direct-request-get-string\\\"};duplicate=1\",\"expected\":\"here -> /chainlink-nodes/job-specs/direct-request-get-string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"/chainlink-nodes/job-specs/direct-request-get-uint256\\\"};duplicate=1\",\"expected\":\"here -> /chainlink-nodes/job-specs/direct-request-get-uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"7d80a6386ef543a3abb52817f6707e3b\\\"};duplicate=1\",\"expected\":\"7d80a6386ef543a3abb52817f6707e3b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"7da2702f37fd48e5b1b9a5715e3509b6\\\"};duplicate=1\",\"expected\":\"7da2702f37fd48e5b1b9a5715e3509b6\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GET>bool:\\\"};duplicate=1\",\"expected\":\"GET>bool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GET>bytes:\\\"};duplicate=1\",\"expected\":\"GET>bytes:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GET>int256:\\\"};duplicate=1\",\"expected\":\"GET>int256:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GET>string:\\\"};duplicate=1\",\"expected\":\"GET>string:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GET>uint256:\\\"};duplicate=1\",\"expected\":\"GET>uint256:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP GET to any public API\\\"};duplicate=1\",\"expected\":\"HTTP GET to any public API\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP GET to any public API\\\"};duplicate=2\",\"expected\":\"HTTP GET to any public API\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP GET to any public API\\\"};duplicate=3\",\"expected\":\"HTTP GET to any public API\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP GET to any public API\\\"};duplicate=4\",\"expected\":\"HTTP GET to any public API\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP GET to any public API\\\"};duplicate=5\",\"expected\":\"HTTP GET to any public API\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Job ID\\\"};duplicate=1\",\"expected\":\"Job ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Purpose\\\"};duplicate=1\",\"expected\":\"Purpose\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required Parameters\\\"};duplicate=1\",\"expected\":\"Required Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tasks\\\"};duplicate=1\",\"expected\":\"Tasks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The job specs can be found\\\"};duplicate=1\",\"expected\":\"The job specs can be found\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The job specs can be found\\\"};duplicate=2\",\"expected\":\"The job specs can be found\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The job specs can be found\\\"};duplicate=3\",\"expected\":\"The job specs can be found\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The job specs can be found\\\"};duplicate=4\",\"expected\":\"The job specs can be found\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The job specs can be found\\\"};duplicate=5\",\"expected\":\"The job specs can be found\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"c1c5e92880894eb6b27d3cae19670aa3\\\"};duplicate=1\",\"expected\":\"c1c5e92880894eb6b27d3cae19670aa3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ca98366cc7314957b8c012c72f05aeeb\\\"};duplicate=1\",\"expected\":\"ca98366cc7314957b8c012c72f05aeeb\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fcf4140d696d44b687012232948bdd5d\\\"};duplicate=1\",\"expected\":\"fcf4140d696d44b687012232948bdd5d\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"get: string\\\"};duplicate=1\",\"expected\":\"get: string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"get: string\\\"};duplicate=2\",\"expected\":\"get: string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"get: string\\\"};duplicate=3\",\"expected\":\"get: string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"get: string\\\"};duplicate=4\",\"expected\":\"get: string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"get: string\\\"};duplicate=5\",\"expected\":\"get: string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"multiply the result by a multiplier\\\"};duplicate=1\",\"expected\":\"multiply the result by a multiplier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"multiply the result by a multiplier\\\"};duplicate=2\",\"expected\":\"multiply the result by a multiplier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"parse the response\\\"};duplicate=1\",\"expected\":\"parse the response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"parse the response\\\"};duplicate=2\",\"expected\":\"parse the response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"parse the response\\\"};duplicate=3\",\"expected\":\"parse the response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"parse the response\\\"};duplicate=4\",\"expected\":\"parse the response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"parse the response\\\"};duplicate=5\",\"expected\":\"parse the response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"path:\\\"};duplicate=1\",\"expected\":\"path:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"path:\\\"};duplicate=2\",\"expected\":\"path:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"path:\\\"};duplicate=3\",\"expected\":\"path:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"path:\\\"};duplicate=4\",\"expected\":\"path:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"path:\\\"};duplicate=5\",\"expected\":\"path:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"return a boolean bool.\\\"};duplicate=1\",\"expected\":\"return a boolean bool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"return a sequence of characters string.\\\"};duplicate=1\",\"expected\":\"return a sequence of characters string.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"return a signed integer int256.\\\"};duplicate=1\",\"expected\":\"return a signed integer int256.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"return an unsigned integer uint256 .\\\"};duplicate=1\",\"expected\":\"return an unsigned integer uint256 .\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"return arbitrary-length raw byte data bytes.\\\"};duplicate=1\",\"expected\":\"return arbitrary-length raw byte data bytes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"times: int\\\"};duplicate=1\",\"expected\":\"times: int\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"times: int\\\"};duplicate=2\",\"expected\":\"times: int\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with comma(,) delimited string\\\"};duplicate=1\",\"expected\":\"with comma(,) delimited string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with comma(,) delimited string\\\"};duplicate=2\",\"expected\":\"with comma(,) delimited string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with comma(,) delimited string\\\"};duplicate=3\",\"expected\":\"with comma(,) delimited string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with comma(,) delimited string\\\"};duplicate=4\",\"expected\":\"with comma(,) delimited string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with comma(,) delimited string\\\"};duplicate=5\",\"expected\":\"with comma(,) delimited string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=16\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=17\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=18\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=19\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=20\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=21\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=22\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=23\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=24\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=25\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=26\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=27\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=28\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=29\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=30\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=31\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=32\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=33\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=34\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=35\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=11\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=12\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"any-api/testnet-oracles\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=5\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"architecture-overview/architecture-request-model\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LinkTokenReceiver\\\"};duplicate=1\",\"expected\":\"LinkTokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"architecture-overview/architecture-request-model\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"architecture-overview/off-chain-reporting\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Aptos: Modules deployed to resource accounts\\\"};duplicate=1\",\"expected\":\"Aptos: Modules deployed to resource accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Aptos: Modules only\\\"};duplicate=1\",\"expected\":\"Aptos: Modules only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Aptos: User accounts or modules deployed to resource accounts\\\"};duplicate=1\",\"expected\":\"Aptos: User accounts or modules deployed to resource accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM: Smart contracts and EOAs\\\"};duplicate=1\",\"expected\":\"EVM: Smart contracts and EOAs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM: Smart contracts only\\\"};duplicate=1\",\"expected\":\"EVM: Smart contracts only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM: Smart contracts only\\\"};duplicate=2\",\"expected\":\"EVM: Smart contracts only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SVM: Data to programs, tokens to program-controlled PDAs\\\"};duplicate=1\",\"expected\":\"SVM: Data to programs, tokens to program-controlled PDAs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SVM: Programs only\\\"};duplicate=1\",\"expected\":\"SVM: Programs only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SVM: User wallets or program-controlled PDAs\\\"};duplicate=1\",\"expected\":\"SVM: User wallets or program-controlled PDAs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=23\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=24\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=25\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=26\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=27\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=28\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=29\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=30\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=31\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=32\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=33\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=34\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=35\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=36\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=37\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=38\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=39\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=40\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=41\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=42\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=43\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=44\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=45\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=46\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=47\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=48\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=23\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=24\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=25\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=26\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=27\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=28\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=29\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=30\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=31\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=32\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=33\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=34\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=35\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=36\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=37\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=38\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=39\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=40\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=41\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=42\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=43\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=44\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=45\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=46\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=47\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=48\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=49\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=50\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=51\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=52\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=53\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=54\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=55\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=56\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=57\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=58\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=59\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=60\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=61\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=62\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=63\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=64\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=65\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=66\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/aptos/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This version (v1) is maintained for backward compatibility. You can already switch to v2.\\\"};duplicate=1\",\"expected\":\"This version (v1) is maintained for backward compatibility. You can already switch to v2.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This version (v1) is maintained for backward compatibility. You can already switch to v2.\\\"};duplicate=2\",\"expected\":\"This version (v1) is maintained for backward compatibility. You can already switch to v2.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This version (v1) is maintained for backward compatibility. You can already switch to v2.\\\"};duplicate=3\",\"expected\":\"This version (v1) is maintained for backward compatibility. You can already switch to v2.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=2\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=3\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=1\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=2\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=3\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=4\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=5\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=1\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=2\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=3\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=4\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=5\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/i-type-and-version\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes32 internal constant ANY_2_EVM_MESSAGE_HASH = keccak256(\\\\\\\"Any2EVMMessageHashV1\\\\\\\");\\\"};duplicate=1\",\"expected\":\"bytes32 internal constant ANY_2_EVM_MESSAGE_HASH = keccak256(\\\"Any2EVMMessageHashV1\\\");\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes32 internal constant EVM_2_ANY_MESSAGE_HASH = keccak256(\\\\\\\"EVM2AnyMessageHashV1\\\\\\\");\\\"};duplicate=1\",\"expected\":\"bytes32 internal constant EVM_2_ANY_MESSAGE_HASH = keccak256(\\\"EVM2AnyMessageHashV1\\\");\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes32 internal constant EVM_2_EVM_MESSAGE_HASH = keccak256(\\\\\\\"EVM2EVMMessageHashV2\\\\\\\");\\\"};duplicate=1\",\"expected\":\"bytes32 internal constant EVM_2_EVM_MESSAGE_HASH = keccak256(\\\"EVM2EVMMessageHashV2\\\");\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant CHAIN_FAMILY_SELECTOR_EVM = 0x2812d52c;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant CHAIN_FAMILY_SELECTOR_EVM = 0x2812d52c;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"enum MessageExecutionState { UNTOUCHED, IN_PROGRESS, SUCCESS, FAILURE }\\\"};duplicate=1\",\"expected\":\"enum MessageExecutionState { UNTOUCHED, IN_PROGRESS, SUCCESS, FAILURE }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"enum OCRPluginType { Commit, Execution }\\\"};duplicate=1\",\"expected\":\"enum OCRPluginType { Commit, Execution }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _hash( Any2EVMRampMessage memory original, bytes memory onRamp ) internal pure returns (bytes32);\\\"};duplicate=1\",\"expected\":\"function _hash( Any2EVMRampMessage memory original, bytes memory onRamp ) internal pure returns (bytes32);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _hash( EVM2AnyRampMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\\\"};duplicate=1\",\"expected\":\"function _hash( EVM2AnyRampMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _hash( EVM2EVMMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\\\"};duplicate=1\",\"expected\":\"function _hash( EVM2EVMMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateEVMAddress( bytes memory encodedAddress ) internal pure returns (address);\\\"};duplicate=1\",\"expected\":\"function _validateEVMAddress( bytes memory encodedAddress ) internal pure returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Any2EVMRampMessage { RampMessageHeader header; bytes sender; bytes data; address receiver; uint256 gasLimit; Any2EVMTokenTransfer[] tokenAmounts; }\\\"};duplicate=1\",\"expected\":\"struct Any2EVMRampMessage { RampMessageHeader header; bytes sender; bytes data; address receiver; uint256 gasLimit; Any2EVMTokenTransfer[] tokenAmounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Any2EVMTokenTransfer { bytes sourcePoolAddress; address destTokenAddress; uint32 destGasAmount; bytes extraData; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct Any2EVMTokenTransfer { bytes sourcePoolAddress; address destTokenAddress; uint32 destGasAmount; bytes extraData; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVM2AnyRampMessage { RampMessageHeader header; address sender; bytes data; bytes receiver; bytes extraArgs; address feeToken; uint256 feeTokenAmount; uint256 feeValueJuels; EVM2AnyTokenTransfer[] tokenAmounts; }\\\"};duplicate=1\",\"expected\":\"struct EVM2AnyRampMessage { RampMessageHeader header; address sender; bytes data; bytes receiver; bytes extraArgs; address feeToken; uint256 feeTokenAmount; uint256 feeValueJuels; EVM2AnyTokenTransfer[] tokenAmounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVM2AnyTokenTransfer { address sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint256 amount; bytes destExecData; }\\\"};duplicate=1\",\"expected\":\"struct EVM2AnyTokenTransfer { address sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint256 amount; bytes destExecData; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVM2EVMMessage { uint64 sourceChainSelector; address sender; address receiver; uint64 sequenceNumber; uint256 gasLimit; bool strict; uint64 nonce; address feeToken; uint256 feeTokenAmount; bytes data; Client.EVMTokenAmount[] tokenAmounts; bytes[] sourceTokenData; bytes32 messageId; }\\\"};duplicate=1\",\"expected\":\"struct EVM2EVMMessage { uint64 sourceChainSelector; address sender; address receiver; uint64 sequenceNumber; uint256 gasLimit; bool strict; uint64 nonce; address feeToken; uint256 feeTokenAmount; bytes data; Client.EVMTokenAmount[] tokenAmounts; bytes[] sourceTokenData; bytes32 messageId; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ExecutionReport { EVM2EVMMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\\\"};duplicate=1\",\"expected\":\"struct ExecutionReport { EVM2EVMMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ExecutionReportSingleChain { uint64 sourceChainSelector; Any2EVMRampMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\\\"};duplicate=1\",\"expected\":\"struct ExecutionReportSingleChain { uint64 sourceChainSelector; Any2EVMRampMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct GasPriceUpdate { uint64 destChainSelector; uint224 usdPerUnitGas; }\\\"};duplicate=1\",\"expected\":\"struct GasPriceUpdate { uint64 destChainSelector; uint224 usdPerUnitGas; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct MerkleRoot { uint64 sourceChainSelector; bytes onRampAddress; uint64 minSeqNr; uint64 maxSeqNr; bytes32 merkleRoot; }\\\"};duplicate=1\",\"expected\":\"struct MerkleRoot { uint64 sourceChainSelector; bytes onRampAddress; uint64 minSeqNr; uint64 maxSeqNr; bytes32 merkleRoot; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct PoolUpdate { address token; address pool; }\\\"};duplicate=1\",\"expected\":\"struct PoolUpdate { address token; address pool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct PriceUpdates { TokenPriceUpdate[] tokenPriceUpdates; GasPriceUpdate[] gasPriceUpdates; }\\\"};duplicate=1\",\"expected\":\"struct PriceUpdates { TokenPriceUpdate[] tokenPriceUpdates; GasPriceUpdate[] gasPriceUpdates; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RampMessageHeader { bytes32 messageId; uint64 sourceChainSelector; uint64 destChainSelector; uint64 sequenceNumber; uint64 nonce; }\\\"};duplicate=1\",\"expected\":\"struct RampMessageHeader { bytes32 messageId; uint64 sourceChainSelector; uint64 destChainSelector; uint64 sequenceNumber; uint64 nonce; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SourceTokenData { bytes sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint32 destGasAmount; }\\\"};duplicate=1\",\"expected\":\"struct SourceTokenData { bytes sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint32 destGasAmount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TimestampedPackedUint224 { uint224 value; uint32 timestamp; }\\\"};duplicate=1\",\"expected\":\"struct TimestampedPackedUint224 { uint224 value; uint32 timestamp; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenPriceUpdate { address sourceToken; uint224 usdPerToken; }\\\"};duplicate=1\",\"expected\":\"struct TokenPriceUpdate { address sourceToken; uint224 usdPerToken; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint16 internal constant GAS_FOR_CALL_EXACT_CHECK = 5_000;\\\"};duplicate=1\",\"expected\":\"uint16 internal constant GAS_FOR_CALL_EXACT_CHECK = 5_000;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint16 internal constant MAX_RET_BYTES = 4 + 4 * 32;\\\"};duplicate=1\",\"expected\":\"uint16 internal constant MAX_RET_BYTES = 4 + 4 * 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 internal constant MAX_BALANCE_OF_RET_BYTES = 32;\\\"};duplicate=1\",\"expected\":\"uint256 internal constant MAX_BALANCE_OF_RET_BYTES = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES = 32 * 14;\\\"};duplicate=1\",\"expected\":\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES = 32 * 14;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * 10;\\\"};duplicate=1\",\"expected\":\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * 10;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant MESSAGE_FIXED_BYTES = 32 * 17;\\\"};duplicate=1\",\"expected\":\"uint256 public constant MESSAGE_FIXED_BYTES = 32 * 17;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * ((1 + 3 * 3) + 2);\\\"};duplicate=1\",\"expected\":\"uint256 public constant MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * ((1 + 3 * 3) + 2);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant PRECOMPILE_SPACE = 1024;\\\"};duplicate=1\",\"expected\":\"uint256 public constant PRECOMPILE_SPACE = 1024;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 public constant GAS_PRICE_BITS = 112;\\\"};duplicate=1\",\"expected\":\"uint8 public constant GAS_PRICE_BITS = 112;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ANY_2_EVM_MESSAGE_FIXED_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ANY_2_EVM_MESSAGE_FIXED_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ANY_2_EVM_MESSAGE_HASH\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ANY_2_EVM_MESSAGE_HASH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Any2EVMRampMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Any2EVMRampMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Any2EVMTokenTransfer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Any2EVMTokenTransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CHAIN_FAMILY_SELECTOR_EVM\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CHAIN_FAMILY_SELECTOR_EVM\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM2AnyRampMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM2AnyRampMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM2AnyTokenTransfer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM2AnyTokenTransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM2EVMMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM2EVMMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_2_ANY_MESSAGE_HASH\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_2_ANY_MESSAGE_HASH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_2_EVM_MESSAGE_HASH\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_2_EVM_MESSAGE_HASH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Enums\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Enums\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExecutionReportSingleChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExecutionReportSingleChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExecutionReport\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExecutionReport\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GAS_FOR_CALL_EXACT_CHECK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GAS_FOR_CALL_EXACT_CHECK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GAS_PRICE_BITS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GAS_PRICE_BITS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GasPriceUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GasPriceUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MAX_BALANCE_OF_RET_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MAX_BALANCE_OF_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MAX_RET_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MAX_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MESSAGE_FIXED_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MESSAGE_FIXED_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MESSAGE_FIXED_BYTES_PER_TOKEN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MESSAGE_FIXED_BYTES_PER_TOKEN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MerkleRoot\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MerkleRoot\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageExecutionState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageExecutionState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OCRPluginType\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OCRPluginType\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PRECOMPILE_SPACE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PRECOMPILE_SPACE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PriceUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PriceUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RampMessageHeader\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RampMessageHeader\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SourceTokenData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SourceTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TimestampedPackedUint224\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TimestampedPackedUint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenPriceUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenPriceUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_hash (Any2EVMRampMessage)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_hash (Any2EVMRampMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_hash (EVM2AnyRampMessage)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_hash (EVM2AnyRampMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_hash (EVM2EVMMessage)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_hash (EVM2EVMMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateEVMAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateEVMAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Any2EVMRampMessage[]\\\",\\\"url\\\":\\\"#any2evmrampmessage\\\"};duplicate=1\",\"expected\":\"Any2EVMRampMessage[] -> #any2evmrampmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Any2EVMRampMessage\\\",\\\"url\\\":\\\"#any2evmrampmessage\\\"};duplicate=1\",\"expected\":\"Any2EVMRampMessage -> #any2evmrampmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Any2EVMTokenTransfer[]\\\",\\\"url\\\":\\\"#any2evmtokentransfer\\\"};duplicate=1\",\"expected\":\"Any2EVMTokenTransfer[] -> #any2evmtokentransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.0/pool#ccip_lock_or_burn_v1_ret_bytes\\\"};duplicate=1\",\"expected\":\"CCIP_LOCK_OR_BURN_V1_RET_BYTES -> /ccip/api-reference/evm/v1.5.0/pool#ccip_lock_or_burn_v1_ret_bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2AnyRampMessage\\\",\\\"url\\\":\\\"#evm2anyrampmessage\\\"};duplicate=1\",\"expected\":\"EVM2AnyRampMessage -> #evm2anyrampmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2AnyTokenTransfer[]\\\",\\\"url\\\":\\\"#evm2anytokentransfer\\\"};duplicate=1\",\"expected\":\"EVM2AnyTokenTransfer[] -> #evm2anytokentransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2EVMMessage[]\\\",\\\"url\\\":\\\"#evm2evmmessage\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage[] -> #evm2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2EVMMessage\\\",\\\"url\\\":\\\"#evm2evmmessage\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage -> #evm2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GasPriceUpdate[]\\\",\\\"url\\\":\\\"#gaspriceupdate\\\"};duplicate=1\",\"expected\":\"GasPriceUpdate[] -> #gaspriceupdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RampMessageHeader\\\",\\\"url\\\":\\\"#rampmessageheader\\\"};duplicate=1\",\"expected\":\"RampMessageHeader -> #rampmessageheader\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RampMessageHeader\\\",\\\"url\\\":\\\"#rampmessageheader\\\"};duplicate=2\",\"expected\":\"RampMessageHeader -> #rampmessageheader\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenPriceUpdate[]\\\",\\\"url\\\":\\\"#tokenpriceupdate\\\"};duplicate=1\",\"expected\":\"TokenPriceUpdate[] -> #tokenpriceupdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1e18 USD per 1e18 of the smallest token denomination\\\"};duplicate=1\",\"expected\":\"1e18 USD per 1e18 of the smallest token denomination\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1e18 USD per smallest unit (e.g. wei) of destination chain gas\\\"};duplicate=1\",\"expected\":\"1e18 USD per smallest unit (e.g. wei) of destination chain gas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A collection of token price and gas price updates.\\\"};duplicate=1\",\"expected\":\"A collection of token price and gas price updates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A timestamped uint224 value that can contain several tightly packed fields.\\\"};duplicate=1\",\"expected\":\"A timestamped uint224 value that can contain several tightly packed fields.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of destination token\\\"};duplicate=1\",\"expected\":\"Address of destination token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of fee token paid\\\"};duplicate=1\",\"expected\":\"Amount of fee token paid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=2\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any2EVMRampMessage struct has 10 fields, including 3 variable unnested arrays (data, receiver and tokenAmounts). Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, Any2EVMMessage takes up a fixed number of 13 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 14. The fixed bytes does not cover struct data (this is represented by ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN).\\\"};duplicate=1\",\"expected\":\"Any2EVMRampMessage struct has 10 fields, including 3 variable unnested arrays (data, receiver and tokenAmounts). Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, Any2EVMMessage takes up a fixed number of 13 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 14. The fixed bytes does not cover struct data (this is represented by ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrary data payload supplied by the message sender\\\"};duplicate=1\",\"expected\":\"Arbitrary data payload supplied by the message sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrary data payload supplied by the message sender\\\"};duplicate=2\",\"expected\":\"Arbitrary data payload supplied by the message sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrary data payload supplied by the message sender\\\"};duplicate=3\",\"expected\":\"Arbitrary data payload supplied by the message sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of gas price updates\\\"};duplicate=1\",\"expected\":\"Array of gas price updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of messages to execute\\\"};duplicate=1\",\"expected\":\"Array of messages to execute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of messages to execute\\\"};duplicate=2\",\"expected\":\"Array of messages to execute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of token data, one per token\\\"};duplicate=1\",\"expected\":\"Array of token data, one per token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of token price updates\\\"};duplicate=1\",\"expected\":\"Array of token price updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of tokens and amounts to transfer\\\"};duplicate=1\",\"expected\":\"Array of tokens and amounts to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of tokens and amounts to transfer\\\"};duplicate=2\",\"expected\":\"Array of tokens and amounts to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of tokens and amounts to transfer\\\"};duplicate=3\",\"expected\":\"Array of tokens and amounts to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap of proof flags\\\"};duplicate=1\",\"expected\":\"Bitmap of proof flags\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap of proof flags\\\"};duplicate=2\",\"expected\":\"Bitmap of proof flags\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bytes array for each message, per transferred token\\\"};duplicate=1\",\"expected\":\"Bytes array for each message, per transferred token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bytes array for each message, per transferred token\\\"};duplicate=2\",\"expected\":\"Bytes array for each message, per transferred token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP OCR plugin type, used to separate execution & commit transmissions and configs.\\\"};duplicate=1\",\"expected\":\"CCIP OCR plugin type, used to separate execution & commit transmissions and configs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP chain selector of the destination chain (not chainId)\\\"};duplicate=1\",\"expected\":\"CCIP chain selector of the destination chain (not chainId)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP chain selector of the source chain (not chainId)\\\"};duplicate=1\",\"expected\":\"CCIP chain selector of the source chain (not chainId)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for EVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector EVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for EVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector EVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector of the source chain (not chainId)\\\"};duplicate=1\",\"expected\":\"Chain selector of the source chain (not chainId)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client.EVMTokenAmount[]\\\"};duplicate=1\",\"expected\":\"Client.EVMTokenAmount[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Commit: Commitment phase OCR plugin\\\"};duplicate=1\",\"expected\":\"Commit: Commitment phase OCR plugin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains trusted and untrusted data for EVM-sourced token transfers:\\\"};duplicate=1\",\"expected\":\"Contains trusted and untrusted data for EVM-sourced token transfers:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains trusted and untrusted data:\\\"};duplicate=1\",\"expected\":\"Contains trusted and untrusted data:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"DEPRECATED\\\"};duplicate=1\",\"expected\":\"DEPRECATED\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain execution data (e.g., gas amount for EVM chains)\\\"};duplicate=1\",\"expected\":\"Destination chain execution data (e.g., gas amount for EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=1\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination token address, abi encoded for EVM chains (untrusted)\\\"};duplicate=1\",\"expected\":\"Destination token address, abi encoded for EVM chains (untrusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination-chain specific args (e.g., gasLimit for EVM)\\\"};duplicate=1\",\"expected\":\"Destination-chain specific args (e.g., gasLimit for EVM)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Disallows the first 1024 addresses (PRECOMPILE_SPACE) and the zero address.\\\"};duplicate=1\",\"expected\":\"Disallows the first 1024 addresses (PRECOMPILE_SPACE) and the zero address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Distinguishes between:\\\"};duplicate=1\",\"expected\":\"Distinguishes between:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM address of the destination token (untrusted)\\\"};duplicate=1\",\"expected\":\"EVM address of the destination token (untrusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM2EVMMessage struct has 13 fields, including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up a fixed number of 16 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 17.\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage struct has 13 fields, including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up a fixed number of 16 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 17.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Each token transfer adds 1 EVMTokenAmount and 3 bytes at 3 slots each and one slot for the destGasAmount. When abi encoded, each EVMTokenAmount takes 2 slots, each bytes takes 1 slot for length, one slot of data and one slot for the offset. This results in effectively 3*3 slots per SourceTokenData.\\\"};duplicate=1\",\"expected\":\"Each token transfer adds 1 EVMTokenAmount and 3 bytes at 3 slots each and one slot for the destGasAmount. When abi encoded, each EVMTokenAmount takes 2 slots, each bytes takes 1 slot for length, one slot of data and one slot for the offset. This results in effectively 3*3 slots per SourceTokenData.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Each token transfer adds 1 RampTokenAmount. RampTokenAmount has 4 fields, including 3 bytes. Each bytes takes 1 more slot to store its length, and one slot to store the offset. When abi encoded, each token transfer takes up 10 slots, excluding bytes contents.\\\"};duplicate=1\",\"expected\":\"Each token transfer adds 1 RampTokenAmount. RampTokenAmount has 4 fields, including 3 bytes. Each bytes takes 1 more slot to store its length, and one slot to store the offset. When abi encoded, each token transfer takes up 10 slots, excluding bytes contents.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted in the CCIPMessageSent event. The messageId equals hash(EVM2AnyRampMessage) using the source EVM chain's encoding format. Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) due to encoding and parameter differences.\\\"};duplicate=1\",\"expected\":\"Emitted in the CCIPMessageSent event. The messageId equals hash(EVM2AnyRampMessage) using the source EVM chain's encoding format. Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) due to encoding and parameter differences.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enum listing the possible message execution states within the offRamp contract.\\\"};duplicate=1\",\"expected\":\"Enum listing the possible message execution states within the offRamp contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execution: Execution phase OCR plugin\\\"};duplicate=1\",\"expected\":\"Execution: Execution phase OCR plugin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"FAILURE: Unsuccessfully executed, manual execution is now enabled\\\"};duplicate=1\",\"expected\":\"FAILURE: Unsuccessfully executed, manual execution is now enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Family-agnostic header for OnRamp & OffRamp messages.\\\"};duplicate=1\",\"expected\":\"Family-agnostic header for OnRamp & OffRamp messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Family-agnostic message emitted from the OnRamp.\\\"};duplicate=1\",\"expected\":\"Family-agnostic message emitted from the OnRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Family-agnostic message routed to an OffRamp.\\\"};duplicate=1\",\"expected\":\"Family-agnostic message routed to an OffRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee amount denominated in Juels\\\"};duplicate=1\",\"expected\":\"Fee amount denominated in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee token address\\\"};duplicate=1\",\"expected\":\"Fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee token amount\\\"};duplicate=1\",\"expected\":\"Fee token amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas available for releaseOrMint and balanceOf calls on the offRamp\\\"};duplicate=1\",\"expected\":\"Gas available for releaseOrMint and balanceOf calls on the offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas available for releaseOrMint and transfer calls on the offRamp\\\"};duplicate=1\",\"expected\":\"Gas available for releaseOrMint and transfer calls on the offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas price for a given chain in USD, its value may contain tightly packed fields.\\\"};duplicate=1\",\"expected\":\"Gas price for a given chain in USD, its value may contain tightly packed fields.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas price is stored in 112-bit unsigned int. uint224 can pack 2 prices. When packing L1 and L2 gas prices, L1 gas price is left-shifted to the higher-order bits.\\\"};duplicate=1\",\"expected\":\"Gas price is stored in 112-bit unsigned int. uint224 can pack 2 prices. When packing L1 and L2 gas prices, L1 gas price is left-shifted to the higher-order bits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Generic onramp address (for EVM, use abi.encode)\\\"};duplicate=1\",\"expected\":\"Generic onramp address (for EVM, use abi.encode)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash identifier for Any to EVM messages version 1.\\\"};duplicate=1\",\"expected\":\"Hash identifier for Any to EVM messages version 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash identifier for EVM to Any messages version 1.\\\"};duplicate=1\",\"expected\":\"Hash identifier for EVM to Any messages version 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash identifier for EVM to EVM messages version 2.\\\"};duplicate=1\",\"expected\":\"Hash identifier for EVM to EVM messages version 2.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash of the message data\\\"};duplicate=1\",\"expected\":\"Hash of the message data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash preimage to ensure global uniqueness\\\"};duplicate=1\",\"expected\":\"Hash preimage to ensure global uniqueness\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hashed message as a keccak256\\\"};duplicate=1\",\"expected\":\"Hashed message as a keccak256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hashed message as a keccak256\\\"};duplicate=2\",\"expected\":\"Hashed message as a keccak256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hashed message as a keccak256\\\"};duplicate=3\",\"expected\":\"Hashed message as a keccak256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IN_PROGRESS: Currently being executed, used as replay protection\\\"};duplicate=1\",\"expected\":\"IN_PROGRESS: Currently being executed, used as replay protection\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Immutable metadata hash representing a lane with a fixed OnRamp\\\"};duplicate=1\",\"expected\":\"Immutable metadata hash representing a lane with a fixed OnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum return data limited to a selector plus 4 words. This avoids malicious contracts from returning large amounts of data and causing repeated out-of-gas scenarios.\\\"};duplicate=1\",\"expected\":\"Maximum return data limited to a selector plus 4 words. This avoids malicious contracts from returning large amounts of data and causing repeated out-of-gas scenarios.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum sequence number, inclusive\\\"};duplicate=1\",\"expected\":\"Maximum sequence number, inclusive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Merkle proofs\\\"};duplicate=1\",\"expected\":\"Merkle proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Merkle proofs\\\"};duplicate=2\",\"expected\":\"Merkle proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Merkle root covering the interval & source chain messages\\\"};duplicate=1\",\"expected\":\"Merkle root covering the interval & source chain messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message header with identifiers and routing information\\\"};duplicate=1\",\"expected\":\"Message header with identifiers and routing information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message header with identifiers and routing information\\\"};duplicate=2\",\"expected\":\"Message header with identifiers and routing information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message to hash\\\"};duplicate=1\",\"expected\":\"Message to hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum sequence number, inclusive\\\"};duplicate=1\",\"expected\":\"Minimum sequence number, inclusive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Nonce for this lane and sender, not unique across lanes\\\"};duplicate=1\",\"expected\":\"Nonce for this lane and sender, not unique across lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Nonce for this lane and sender, not unique across senders/lanes\\\"};duplicate=1\",\"expected\":\"Nonce for this lane and sender, not unique across senders/lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) and hash(Any2EVMRampMessage) != messageId due to encoding & parameter differences.\\\"};duplicate=1\",\"expected\":\"Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) and hash(Any2EVMRampMessage) != messageId due to encoding & parameter differences.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OffRamp message to hash\\\"};duplicate=1\",\"expected\":\"OffRamp message to hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp hash(EVM2AnyMessage) != Any2EVMRampMessage.messageId\\\"};duplicate=1\",\"expected\":\"OnRamp hash(EVM2AnyMessage) != Any2EVMRampMessage.messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp hash(EVM2AnyMessage) != OffRamp hash(Any2EVMRampMessage)\\\"};duplicate=1\",\"expected\":\"OnRamp hash(EVM2AnyMessage) != OffRamp hash(Any2EVMRampMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp hash(EVM2EVMMessage) = OffRamp hash(EVM2EVMMessage)\\\"};duplicate=1\",\"expected\":\"OnRamp hash(EVM2EVMMessage) = OffRamp hash(EVM2EVMMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp message to hash\\\"};duplicate=1\",\"expected\":\"OnRamp message to hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp to hash the message with - used to compute the metadataHash\\\"};duplicate=1\",\"expected\":\"OnRamp to hash the message with - used to compute the metadataHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional pool data transferred to destination chain\\\"};duplicate=1\",\"expected\":\"Optional pool data transferred to destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional pool data transferred to destination chain\\\"};duplicate=2\",\"expected\":\"Optional pool data transferred to destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional pool data transferred to destination chain\\\"};duplicate=3\",\"expected\":\"Optional pool data transferred to destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=10\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=11\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=12\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=13\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=14\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=15\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=4\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=5\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=6\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=7\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=8\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=9\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this enum. If changing, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"RMN depends on this enum. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=2\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=3\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=4\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=5\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=6\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=7\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver address on the destination chain\\\"};duplicate=1\",\"expected\":\"Receiver address on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver address on the destination chain\\\"};duplicate=2\",\"expected\":\"Receiver address on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver address on the destination chain\\\"};duplicate=3\",\"expected\":\"Receiver address on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Remote source chain selector that the Merkle Root is scoped to\\\"};duplicate=1\",\"expected\":\"Remote source chain selector that the Merkle Root is scoped to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submitted by the execution DON at the execution phase (including chain selector data).\\\"};duplicate=1\",\"expected\":\"Report submitted by the execution DON at the execution phase (including chain selector data).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submitted by the execution DON at the execution phase.\\\"};duplicate=1\",\"expected\":\"Report submitted by the execution DON at the execution phase.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SUCCESS: Successfully executed (end state)\\\"};duplicate=1\",\"expected\":\"SUCCESS: Successfully executed (end state)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender address on the source chain\\\"};duplicate=1\",\"expected\":\"Sender address on the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender address on the source chain\\\"};duplicate=2\",\"expected\":\"Sender address on the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender address on the source chain\\\"};duplicate=3\",\"expected\":\"Sender address on the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sequence number, not unique across lanes\\\"};duplicate=1\",\"expected\":\"Sequence number, not unique across lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sequence number, not unique across lanes\\\"};duplicate=2\",\"expected\":\"Sequence number, not unique across lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source chain selector for which report is submitted\\\"};duplicate=1\",\"expected\":\"Source chain selector for which report is submitted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool EVM address (trusted)\\\"};duplicate=1\",\"expected\":\"Source pool EVM address (trusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool EVM address encoded to bytes (trusted)\\\"};duplicate=1\",\"expected\":\"Source pool EVM address encoded to bytes (trusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool address, abi encoded (trusted)\\\"};duplicate=1\",\"expected\":\"Source pool address, abi encoded (trusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source token address\\\"};duplicate=1\",\"expected\":\"Source token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"States represent the message execution lifecycle:\\\"};duplicate=1\",\"expected\":\"States represent the message execution lifecycle:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold a merkle root and an interval for a source chain.\\\"};duplicate=1\",\"expected\":\"Struct to hold a merkle root and an interval for a source chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing token-specific data from the source chain.\\\"};duplicate=1\",\"expected\":\"Structure containing token-specific data from the source chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for token pool updates.\\\"};duplicate=1\",\"expected\":\"Structure for token pool updates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token transfers from EVM chains to any destination chain.\\\"};duplicate=1\",\"expected\":\"Structure representing token transfers from EVM chains to any destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token transfers from any source chain to EVM chains.\\\"};duplicate=1\",\"expected\":\"Structure representing token transfers from any source chain to EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The EVM2EVMMessage's messageId is expected to be the output of this hash function.\\\"};duplicate=1\",\"expected\":\"The EVM2EVMMessage's messageId is expected to be the output of this hash function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The IERC20 token address\\\"};duplicate=1\",\"expected\":\"The IERC20 token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The abi-encoded address to validate\\\"};duplicate=1\",\"expected\":\"The abi-encoded address to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The cross chain message that gets committed to EVM chains.\\\"};duplicate=1\",\"expected\":\"The cross chain message that gets committed to EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of bytes returned by the balanceOf function.\\\"};duplicate=1\",\"expected\":\"The expected number of bytes returned by the balanceOf function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The first 1024 addresses are disallowed to avoid calling into a range known for hosting precompiles. Calling into precompiles probably won't cause issues, but this is a conservative safety measure. While there is no official range of precompiles, EIP-7587 proposes to reserve the range 0x100 to 0x1ff. This range is more conservative. The zero address is also disallowed as a common practice.\\\"};duplicate=1\",\"expected\":\"The first 1024 addresses are disallowed to avoid calling into a range known for hosting precompiles. Calling into precompiles probably won't cause issues, but this is a conservative safety measure. While there is no official range of precompiles, EIP-7587 proposes to reserve the range 0x100 to 0x1ff. This range is more conservative. The zero address is also disallowed as a common practice.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid encoded address\\\"};duplicate=1\",\"expected\":\"The invalid encoded address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The messageId is not expected to match hash(message), since it may originate from another ramp family. All identifiers are CCIP-specific, not chain-native identifiers.\\\"};duplicate=1\",\"expected\":\"The messageId is not expected to match hash(message), since it may originate from another ramp family. All identifiers are CCIP-specific, not chain-native identifiers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The minimum amount of gas to perform the call with exact gas. Included in the offramp so it can be redeployed to adjust should a hardfork change the gas costs of relevant opcodes in callWithExactGas.\\\"};duplicate=1\",\"expected\":\"The minimum amount of gas to perform the call with exact gas. Included in the offramp so it can be redeployed to adjust should a hardfork change the gas costs of relevant opcodes in callWithExactGas.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address is TRUSTED as it was obtained through the onRamp and can be relied upon by the destination pool to validate the source pool.\\\"};duplicate=1\",\"expected\":\"The source pool address is TRUSTED as it was obtained through the onRamp and can be relied upon by the destination pool to validate the source pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The struct has 10 fields including 3 variable unnested arrays (data, receiver and tokenAmounts). When abi encoded, excluding array contents, it takes up 13 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 14.\\\"};duplicate=1\",\"expected\":\"The struct has 10 fields including 3 variable unnested arrays (data, receiver and tokenAmounts). When abi encoded, excluding array contents, it takes up 13 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 14.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The struct has 13 fields including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up 16 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 17.\\\"};duplicate=1\",\"expected\":\"The struct has 13 fields including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up 16 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 17.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token pool address\\\"};duplicate=1\",\"expected\":\"The token pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\\\"};duplicate=2\",\"expected\":\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\\\"};duplicate=3\",\"expected\":\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses inefficient packing intentionally chosen to maintain order of specificity. Not a storage struct so impact is minimal.\\\"};duplicate=1\",\"expected\":\"This struct uses inefficient packing intentionally chosen to maintain order of specificity. Not a storage struct so impact is minimal.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an encoded address is invalid (wrong length or outside valid EVM address range).\\\"};duplicate=1\",\"expected\":\"Thrown when an encoded address is invalid (wrong length or outside valid EVM address range).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Timestamp of the most recent price update\\\"};duplicate=1\",\"expected\":\"Timestamp of the most recent price update\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token price in USD.\\\"};duplicate=1\",\"expected\":\"Token price in USD.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token used to pay fees\\\"};duplicate=1\",\"expected\":\"Token used to pay fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"UNTOUCHED: Never executed\\\"};duplicate=1\",\"expected\":\"UNTOUCHED: Never executed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unique identifier generated with source chain's encoding scheme\\\"};duplicate=1\",\"expected\":\"Unique identifier generated with source chain's encoding scheme\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to hash messages for multi-lane family-agnostic OffRamps.\\\"};duplicate=1\",\"expected\":\"Used to hash messages for multi-lane family-agnostic OffRamps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to hash messages for multi-lane family-agnostic OnRamps.\\\"};duplicate=1\",\"expected\":\"Used to hash messages for multi-lane family-agnostic OnRamps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to hash messages for single-lane ramps.\\\"};duplicate=1\",\"expected\":\"Used to hash messages for single-lane ramps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User supplied maximum gas for destination chain execution\\\"};duplicate=1\",\"expected\":\"User supplied maximum gas for destination chain execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User supplied maximum gas for destination chain execution\\\"};duplicate=2\",\"expected\":\"User supplied maximum gas for destination chain execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates parsing of abi encoded addresses by ensuring the address is within the EVM address space. If it isn't, it will revert with an InvalidEVMAddress error, which can be caught and handled more gracefully than a revert from abi.decode.\\\"};duplicate=1\",\"expected\":\"Validates parsing of abi encoded addresses by ensuring the address is within the EVM address space. If it isn't, it will revert with an InvalidEVMAddress error, which can be caught and handled more gracefully than a revert from abi.decode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value in uint224, can contain packed fields\\\"};duplicate=1\",\"expected\":\"Value in uint224, can contain packed fields\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=1\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=2\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=1\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=2\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=3\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=4\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=5\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=6\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=7\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=8\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[][]\\\"};duplicate=1\",\"expected\":\"bytes[][]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[][]\\\"};duplicate=2\",\"expected\":\"bytes[][]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=10\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=11\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=12\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=13\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=14\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=15\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=16\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=17\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=9\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=1\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=2\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=3\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destExecData\\\"};duplicate=1\",\"expected\":\"destExecData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasAmount\\\"};duplicate=1\",\"expected\":\"destGasAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasAmount\\\"};duplicate=2\",\"expected\":\"destGasAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress is UNTRUSTED (pool owner can return any value)\\\"};duplicate=1\",\"expected\":\"destTokenAddress is UNTRUSTED (pool owner can return any value)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress is UNTRUSTED (pool owner can return any value)\\\"};duplicate=2\",\"expected\":\"destTokenAddress is UNTRUSTED (pool owner can return any value)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress\\\"};duplicate=1\",\"expected\":\"destTokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress\\\"};duplicate=2\",\"expected\":\"destTokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress\\\"};duplicate=3\",\"expected\":\"destTokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"encodedAddress\\\"};duplicate=1\",\"expected\":\"encodedAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData is capped at CCIP_LOCK_OR_BURN_V1_RET_BYTES unless TokenTransferFeeConfig.destBytesOverhead is set\\\"};duplicate=1\",\"expected\":\"extraData is capped at CCIP_LOCK_OR_BURN_V1_RET_BYTES unless TokenTransferFeeConfig.destBytesOverhead is set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData is capped at\\\"};duplicate=1\",\"expected\":\"extraData is capped at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData\\\"};duplicate=1\",\"expected\":\"extraData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData\\\"};duplicate=2\",\"expected\":\"extraData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData\\\"};duplicate=3\",\"expected\":\"extraData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeTokenAmount\\\"};duplicate=1\",\"expected\":\"feeTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeTokenAmount\\\"};duplicate=2\",\"expected\":\"feeTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeToken\\\"};duplicate=1\",\"expected\":\"feeToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeToken\\\"};duplicate=2\",\"expected\":\"feeToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeValueJuels\\\"};duplicate=1\",\"expected\":\"feeValueJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=2\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceUpdates\\\"};duplicate=1\",\"expected\":\"gasPriceUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hashedMessage\\\"};duplicate=1\",\"expected\":\"hashedMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hashedMessage\\\"};duplicate=2\",\"expected\":\"hashedMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hashedMessage\\\"};duplicate=3\",\"expected\":\"hashedMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"header\\\"};duplicate=1\",\"expected\":\"header\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"header\\\"};duplicate=2\",\"expected\":\"header\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSeqNr\\\"};duplicate=1\",\"expected\":\"maxSeqNr\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"merkleRoot\\\"};duplicate=1\",\"expected\":\"merkleRoot\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messageId\\\"};duplicate=1\",\"expected\":\"messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messageId\\\"};duplicate=2\",\"expected\":\"messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messages\\\"};duplicate=1\",\"expected\":\"messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messages\\\"};duplicate=2\",\"expected\":\"messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"metadataHash\\\"};duplicate=1\",\"expected\":\"metadataHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"metadataHash\\\"};duplicate=2\",\"expected\":\"metadataHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minSeqNr\\\"};duplicate=1\",\"expected\":\"minSeqNr\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nonce\\\"};duplicate=1\",\"expected\":\"nonce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nonce\\\"};duplicate=2\",\"expected\":\"nonce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"offchainTokenData\\\"};duplicate=1\",\"expected\":\"offchainTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"offchainTokenData\\\"};duplicate=2\",\"expected\":\"offchainTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"onRampAddress\\\"};duplicate=1\",\"expected\":\"onRampAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"onRamp\\\"};duplicate=1\",\"expected\":\"onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"original\\\"};duplicate=1\",\"expected\":\"original\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"original\\\"};duplicate=2\",\"expected\":\"original\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"original\\\"};duplicate=3\",\"expected\":\"original\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pool\\\"};duplicate=1\",\"expected\":\"pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofFlagBits\\\"};duplicate=1\",\"expected\":\"proofFlagBits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofFlagBits\\\"};duplicate=2\",\"expected\":\"proofFlagBits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofs\\\"};duplicate=1\",\"expected\":\"proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofs\\\"};duplicate=2\",\"expected\":\"proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=2\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=3\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sequenceNumber\\\"};duplicate=1\",\"expected\":\"sequenceNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sequenceNumber\\\"};duplicate=2\",\"expected\":\"sequenceNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=1\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=2\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=3\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=4\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\\\"};duplicate=1\",\"expected\":\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\\\"};duplicate=2\",\"expected\":\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress\\\"};duplicate=1\",\"expected\":\"sourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress\\\"};duplicate=2\",\"expected\":\"sourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress\\\"};duplicate=3\",\"expected\":\"sourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceTokenData\\\"};duplicate=1\",\"expected\":\"sourceTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceToken\\\"};duplicate=1\",\"expected\":\"sourceToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"strict\\\"};duplicate=1\",\"expected\":\"strict\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp\\\"};duplicate=1\",\"expected\":\"timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAmounts\\\"};duplicate=1\",\"expected\":\"tokenAmounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAmounts\\\"};duplicate=2\",\"expected\":\"tokenAmounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAmounts\\\"};duplicate=3\",\"expected\":\"tokenAmounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceUpdates\\\"};duplicate=1\",\"expected\":\"tokenPriceUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=1\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=2\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=3\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"unless TokenTransferFeeConfig.destBytesOverhead is set\\\"};duplicate=1\",\"expected\":\"unless TokenTransferFeeConfig.destBytesOverhead is set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"usdPerToken\\\"};duplicate=1\",\"expected\":\"usdPerToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"usdPerUnitGas\\\"};duplicate=1\",\"expected\":\"usdPerUnitGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"value\\\"};duplicate=1\",\"expected\":\"value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=2\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=3\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=4\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=5\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You are viewing API documentation for CCIP v1.5.1, which is the latest version.\\\"};duplicate=1\",\"expected\":\"You are viewing API documentation for CCIP v1.5.1, which is the latest version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _burn(uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _burn(uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_burn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier that specifies the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier that specifies the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\\\"};duplicate=1\",\"expected\":\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements the core burn functionality for the pool.\\\"};duplicate=1\",\"expected\":\"Implements the core burn functionality for the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that executes the token burning operation.\\\"};duplicate=1\",\"expected\":\"Internal function that executes the token burning operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the BurnFromMintTokenPool contract with initial configuration.\\\"};duplicate=1\",\"expected\":\"Sets up the BurnFromMintTokenPool contract with initial configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract identifier \\\\\\\"BurnFromMintTokenPool 1.5.1\\\\\\\"\\\"};duplicate=1\",\"expected\":\"The contract identifier \\\"BurnFromMintTokenPool 1.5.1\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The function can be overridden in derived contracts to implement different burning mechanisms while preserving the base logic.\\\"};duplicate=1\",\"expected\":\"The function can be overridden in derived contracts to implement different burning mechanisms while preserving the base logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The quantity of tokens to burn\\\"};duplicate=1\",\"expected\":\"The quantity of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-erc20\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event Minted(address indexed sender, address indexed recipient, uint256 amount);\\\"};duplicate=1\",\"expected\":\"event Minted(address indexed sender, address indexed recipient, uint256 amount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _burn(uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _burn(uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Minted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Minted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_burn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.5.1/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.5.1/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.5.1/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burns the specified amount of tokens\\\"};duplicate=1\",\"expected\":\"Burns the specified amount of tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burns tokens in the pool during a cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Burns tokens in the pool during a cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burns tokens in the pool with essential security validation:\\\"};duplicate=1\",\"expected\":\"Burns tokens in the pool with essential security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the correct local token amount using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates the correct local token amount using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the specific burn call for a pool.\\\"};duplicate=1\",\"expected\":\"Contains the specific burn call for a pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Burned event\\\"};duplicate=1\",\"expected\":\"Emits a Burned event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Minted event\\\"};duplicate=1\",\"expected\":\"Emits a Minted event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when new tokens are minted from the pool.\\\"};duplicate=1\",\"expected\":\"Emitted when new tokens are minted from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are burned in the pool.\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are burned in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the burn operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the burn operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the mint operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the mint operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that executes the token burning operation.\\\"};duplicate=1\",\"expected\":\"Internal function that executes the token burning operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mints new tokens to a recipient during a cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Mints new tokens to a recipient during a cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mints tokens to a specified recipient with the following steps:\\\"};duplicate=1\",\"expected\":\"Mints tokens to a specified recipient with the following steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mints tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Mints tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs security validation through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs security validation through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs security validation through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs security validation through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address initiating the burn operation\\\"};duplicate=1\",\"expected\":\"The address initiating the burn operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address initiating the mint operation\\\"};duplicate=1\",\"expected\":\"The address initiating the mint operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address receiving the minted tokens\\\"};duplicate=1\",\"expected\":\"The address receiving the minted tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens burned\\\"};duplicate=1\",\"expected\":\"The number of tokens burned\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens minted\\\"};duplicate=1\",\"expected\":\"The number of tokens minted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to burn\\\"};duplicate=1\",\"expected\":\"The number of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This method can be overridden to create pools with different burn signatures without duplicating the underlying logic.\\\"};duplicate=1\",\"expected\":\"This method can be overridden to create pools with different burn signatures without duplicating the underlying logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"recipient\\\"};duplicate=1\",\"expected\":\"recipient\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_ccipReceive\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the contract implements specific interfaces.\\\"};duplicate=1\",\"expected\":\"Determines whether the contract implements specific interfaces.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns false or reverts: only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If returns false or reverts: only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns true: tokens are transferred and ccipReceive is called atomically\\\"};duplicate=1\",\"expected\":\"If returns true: tokens are transferred and ccipReceive is called atomically\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection with CCIP-specific behavior:\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection with CCIP-specific behavior:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to be implemented by derived contracts for custom message handling.\\\"};duplicate=1\",\"expected\":\"Internal function to be implemented by derived contracts for custom message handling.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides access to the immutable router address used for message validation.\\\"};duplicate=1\",\"expected\":\"Provides access to the immutable router address used for message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\\\"};duplicate=1\",\"expected\":\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current CCIP router address\\\"};duplicate=1\",\"expected\":\"The current CCIP router address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used by CCIP to check if ccipReceive is available\\\"};duplicate=1\",\"expected\":\"Used by CCIP to check if ccipReceive is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\\\"};duplicate=1\",\"expected\":\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant EVM_EXTRA_ARGS_V2_TAG = 0x181dcf10;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant EVM_EXTRA_ARGS_V2_TAG = 0x181dcf10;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(EVMExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(EVMExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVMExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\\\"};duplicate=1\",\"expected\":\"struct EVMExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVMTokenAmount { address token; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct EVMTokenAmount { address token; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVMExtraArgsV2\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVMExtraArgsV2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVMTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_EXTRA_ARGS_V2_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_EXTRA_ARGS_V2_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V1)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V1)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V2)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMExtraArgsV1\\\",\\\"url\\\":\\\"#evmextraargsv1\\\"};duplicate=1\",\"expected\":\"EVMExtraArgsV1 -> #evmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMExtraArgsV2\\\",\\\"url\\\":\\\"#evmextraargsv2\\\"};duplicate=1\",\"expected\":\"EVMExtraArgsV2 -> #evmextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows specifying out-of-order execution preference\\\"};duplicate=1\",\"expected\":\"Allows specifying out-of-order execution preference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Changes to this struct require RMN maintainer notification\\\"};duplicate=1\",\"expected\":\"Changes to this struct require RMN maintainer notification\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core structure for token transfers used by the Risk Management Network (RMN):\\\"};duplicate=1\",\"expected\":\"Core structure for token transfers used by the Risk Management Network (RMN):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default value for allowOutOfOrderExecution varies by chain\\\"};duplicate=1\",\"expected\":\"Default value for allowOutOfOrderExecution varies by chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes EVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes EVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes EVMExtraArgsV2 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes EVMExtraArgsV2 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enhanced version of extra arguments adding execution order control:\\\"};duplicate=1\",\"expected\":\"Enhanced version of extra arguments adding execution order control:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First version of extra arguments, supporting basic gas limit configuration.\\\"};duplicate=1\",\"expected\":\"First version of extra arguments, supporting basic gas limit configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit for execution on destination chain\\\"};duplicate=1\",\"expected\":\"Gas limit for execution on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Includes configurable gas limit\\\"};duplicate=1\",\"expected\":\"Includes configurable gas limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents token amounts in their chain-specific format\\\"};duplicate=1\",\"expected\":\"Represents token amounts in their chain-specific format\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V2 extra arguments with the V2 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V2 extra arguments with the V2 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Some chains enforce specific values and will revert if not set correctly\\\"};duplicate=1\",\"expected\":\"Some chains enforce specific values and will revert if not set correctly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V2 extra arguments in cross-chain messages.\\\"};duplicate=1\",\"expected\":\"Structure for V2 extra arguments in cross-chain messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token amounts in CCIP messages.\\\"};duplicate=1\",\"expected\":\"Structure representing token amounts in CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V1 extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V1 extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V2 extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V2 extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=1\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\\\\\"CCIP EVMExtraArgsV1\\\\\\\"))).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\"CCIP EVMExtraArgsV1\\\"))).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V2 extra arguments (bytes4(keccak256(\\\\\\\"CCIP EVMExtraArgsV2\\\\\\\"))).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V2 extra arguments (bytes4(keccak256(\\\"CCIP EVMExtraArgsV2\\\"))).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address on the local chain\\\"};duplicate=1\",\"expected\":\"Token address on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=1\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=1\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=1\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=2\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=3\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=4\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=5\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=6\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=1\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=2\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=3\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=4\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=5\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DataFeedValueOutOfUint224Range();\\\"};duplicate=1\",\"expected\":\"error DataFeedValueOutOfUint224Range();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DestinationChainNotEnabled(uint64 destChainSelector);\\\"};duplicate=1\",\"expected\":\"error DestinationChainNotEnabled(uint64 destChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ExtraArgOutOfOrderExecutionMustBeTrue();\\\"};duplicate=1\",\"expected\":\"error ExtraArgOutOfOrderExecutionMustBeTrue();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error FeeTokenNotSupported(address token);\\\"};duplicate=1\",\"expected\":\"error FeeTokenNotSupported(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDestBytesOverhead(address token, uint32 destBytesOverhead);\\\"};duplicate=1\",\"expected\":\"error InvalidDestBytesOverhead(address token, uint32 destBytesOverhead);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDestChainConfig(uint64 destChainSelector);\\\"};duplicate=1\",\"expected\":\"error InvalidDestChainConfig(uint64 destChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsTag();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsTag();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidStaticConfig();\\\"};duplicate=1\",\"expected\":\"error InvalidStaticConfig();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\\\"};duplicate=1\",\"expected\":\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageGasLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageGasLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\\\"};duplicate=1\",\"expected\":\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error SourceTokenDataTooLarge(address token);\\\"};duplicate=1\",\"expected\":\"error SourceTokenDataTooLarge(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\\\"};duplicate=1\",\"expected\":\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error StaleKeystoneUpdate(address token, uint256 feedTimestamp, uint256 storedTimeStamp);\\\"};duplicate=1\",\"expected\":\"error StaleKeystoneUpdate(address token, uint256 feedTimestamp, uint256 storedTimeStamp);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error UnsupportedNumberOfTokens();\\\"};duplicate=1\",\"expected\":\"error UnsupportedNumberOfTokens();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event DestChainAdded(uint64 indexed destChainSelector, DestChainConfig destChainConfig);\\\"};duplicate=1\",\"expected\":\"event DestChainAdded(uint64 indexed destChainSelector, DestChainConfig destChainConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event DestChainConfigUpdated(uint64 indexed destChainSelector, DestChainConfig destChainConfig);\\\"};duplicate=1\",\"expected\":\"event DestChainConfigUpdated(uint64 indexed destChainSelector, DestChainConfig destChainConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event FeeTokenAdded(address indexed feeToken);\\\"};duplicate=1\",\"expected\":\"event FeeTokenAdded(address indexed feeToken);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event FeeTokenRemoved(address indexed feeToken);\\\"};duplicate=1\",\"expected\":\"event FeeTokenRemoved(address indexed feeToken);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PremiumMultiplierWeiPerEthUpdated(address indexed token, uint64 premiumMultiplierWeiPerEth);\\\"};duplicate=1\",\"expected\":\"event PremiumMultiplierWeiPerEthUpdated(address indexed token, uint64 premiumMultiplierWeiPerEth);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PriceFeedPerTokenUpdated(address indexed token, TokenPriceFeedConfig priceFeedConfig);\\\"};duplicate=1\",\"expected\":\"event PriceFeedPerTokenUpdated(address indexed token, TokenPriceFeedConfig priceFeedConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event TokenTransferFeeConfigDeleted(uint64 indexed destChainSelector, address indexed token);\\\"};duplicate=1\",\"expected\":\"event TokenTransferFeeConfigDeleted(uint64 indexed destChainSelector, address indexed token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event TokenTransferFeeConfigUpdated( uint64 indexed destChainSelector, address indexed token, TokenTransferFeeConfig tokenTransferFeeConfig );\\\"};duplicate=1\",\"expected\":\"event TokenTransferFeeConfigUpdated( uint64 indexed destChainSelector, address indexed token, TokenTransferFeeConfig tokenTransferFeeConfig );\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event UsdPerTokenUpdated(address indexed token, uint256 value, uint256 timestamp);\\\"};duplicate=1\",\"expected\":\"event UsdPerTokenUpdated(address indexed token, uint256 value, uint256 timestamp);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event UsdPerUnitGasUpdated(uint64 indexed destChain, uint256 value, uint256 timestamp);\\\"};duplicate=1\",\"expected\":\"event UsdPerUnitGasUpdated(uint64 indexed destChain, uint256 value, uint256 timestamp);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint16 destGasPerPayloadByte; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 networkFeeUSDCents; uint32 gasPriceStalenessThreshold; bool enforceOutOfOrder; bytes4 chainFamilySelector; }\\\"};duplicate=1\",\"expected\":\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint16 destGasPerPayloadByte; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 networkFeeUSDCents; uint32 gasPriceStalenessThreshold; bool enforceOutOfOrder; bytes4 chainFamilySelector; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct DestChainConfigArgs { uint64 destChainSelector; DestChainConfig destChainConfig; }\\\"};duplicate=1\",\"expected\":\"struct DestChainConfigArgs { uint64 destChainSelector; DestChainConfig destChainConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct PremiumMultiplierWeiPerEthArgs { address token; uint64 premiumMultiplierWeiPerEth; }\\\"};duplicate=1\",\"expected\":\"struct PremiumMultiplierWeiPerEthArgs { address token; uint64 premiumMultiplierWeiPerEth; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ReceivedCCIPFeedReport { address token; uint224 price; uint32 timestamp; }\\\"};duplicate=1\",\"expected\":\"struct ReceivedCCIPFeedReport { address token; uint224 price; uint32 timestamp; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\\\"};duplicate=1\",\"expected\":\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenPriceFeedConfig { address dataFeedAddress; uint8 tokenDecimals; }\\\"};duplicate=1\",\"expected\":\"struct TokenPriceFeedConfig { address dataFeedAddress; uint8 tokenDecimals; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenPriceFeedUpdate { address sourceToken; TokenPriceFeedConfig feedConfig; }\\\"};duplicate=1\",\"expected\":\"struct TokenPriceFeedUpdate { address sourceToken; TokenPriceFeedConfig feedConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfigArgs { uint64 destChainSelector; TokenTransferFeeConfigSingleTokenArgs[] tokenTransferFeeConfigs; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfigArgs { uint64 destChainSelector; TokenTransferFeeConfigSingleTokenArgs[] tokenTransferFeeConfigs; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfigRemoveArgs { uint64 destChainSelector; address token; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfigRemoveArgs { uint64 destChainSelector; address token; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfigSingleTokenArgs { address token; TokenTransferFeeConfig tokenTransferFeeConfig; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfigSingleTokenArgs { address token; TokenTransferFeeConfig tokenTransferFeeConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DataFeedValueOutOfUint224Range\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DataFeedValueOutOfUint224Range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfigArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfigArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfigUpdated\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfigUpdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestinationChainNotEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestinationChainNotEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Events\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Events\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExtraArgOutOfOrderExecutionMustBeTrue\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExtraArgOutOfOrderExecutionMustBeTrue\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenNotSupported\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenNotSupported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDestBytesOverhead\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDestBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsTag\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsTag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidStaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidStaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageFeeTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageFeeTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageGasLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageGasLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageTooLarge\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageTooLarge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PremiumMultiplierWeiPerEthArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PremiumMultiplierWeiPerEthArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PremiumMultiplierWeiPerEthUpdated\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PremiumMultiplierWeiPerEthUpdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PriceFeedPerTokenUpdated\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PriceFeedPerTokenUpdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ReceivedCCIPFeedReport\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ReceivedCCIPFeedReport\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SourceTokenDataTooLarge\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SourceTokenDataTooLarge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaleGasPrice\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaleGasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaleKeystoneUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaleKeystoneUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenPriceFeedConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenPriceFeedConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenPriceFeedUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenPriceFeedUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfigArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfigArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfigDeleted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfigDeleted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfigRemoveArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfigRemoveArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfigSingleTokenArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfigSingleTokenArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfigUpdated\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfigUpdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UnsupportedNumberOfTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UnsupportedNumberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UsdPerTokenUpdated\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UsdPerTokenUpdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UsdPerUnitGasUpdated\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UsdPerUnitGasUpdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=2\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=3\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig.maxFeeJuelsPerMsg\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig.maxFeeJuelsPerMsg -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenPriceFeedConfig\\\",\\\"url\\\":\\\"#tokenpricefeedconfig\\\"};duplicate=1\",\"expected\":\"TokenPriceFeedConfig -> #tokenpricefeedconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenPriceFeedConfig\\\",\\\"url\\\":\\\"#tokenpricefeedconfig\\\"};duplicate=2\",\"expected\":\"TokenPriceFeedConfig -> #tokenpricefeedconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfigSingleTokenArgs[]\\\",\\\"url\\\":\\\"#tokentransferfeeconfigsingletokenargs\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfigSingleTokenArgs[] -> #tokentransferfeeconfigsingletokenargs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=2\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\").\\\"};duplicate=1\",\"expected\":\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Actual message size that was too large\\\"};duplicate=1\",\"expected\":\"Actual message size that was too large\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AggregatorV3Interface contract address (0 if feed is unset)\\\"};duplicate=1\",\"expected\":\"AggregatorV3Interface contract address (0 if feed is unset)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of gas to charge per byte of message data that needs availability\\\"};duplicate=1\",\"expected\":\"Amount of gas to charge per byte of message data that needs availability\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of token transfer fee configurations\\\"};duplicate=1\",\"expected\":\"Array of token transfer fee configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Basis points charged on token transfers, multiples of 0.1bps, or 1e-5\\\"};duplicate=1\",\"expected\":\"Basis points charged on token transfers, multiples of 0.1bps, or 1e-5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated message fee in Juels\\\"};duplicate=1\",\"expected\":\"Calculated message fee in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Config to update for the chain selector\\\"};duplicate=1\",\"expected\":\"Config to update for the chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decimals of the token that the feed represents\\\"};duplicate=1\",\"expected\":\"Decimals of the token that the feed represents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged to execute token transfer on destination chain (overridable)\\\"};duplicate=1\",\"expected\":\"Default gas charged to execute token transfer on destination chain (overridable)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas limit for a transaction\\\"};duplicate=1\",\"expected\":\"Default gas limit for a transaction\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default token fee charged per token transfer (overridable per token)\\\"};duplicate=1\",\"expected\":\"Default token fee charged per token transfer (overridable per token)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain gas charged for passing each byte of data payload to receiver\\\"};duplicate=1\",\"expected\":\"Destination chain gas charged for passing each byte of data payload to receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=1\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=2\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=3\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a fee token is removed from the allowed list.\\\"};duplicate=1\",\"expected\":\"Emitted when a fee token is removed from the allowed list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new destination chain is added with its configuration.\\\"};duplicate=1\",\"expected\":\"Emitted when a new destination chain is added with its configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new fee token is added to the allowed list.\\\"};duplicate=1\",\"expected\":\"Emitted when a new fee token is added to the allowed list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token's price feed configuration is updated.\\\"};duplicate=1\",\"expected\":\"Emitted when a token's price feed configuration is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the configuration for an existing destination chain is updated.\\\"};duplicate=1\",\"expected\":\"Emitted when the configuration for an existing destination chain is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the gas price for a destination chain is updated.\\\"};duplicate=1\",\"expected\":\"Emitted when the gas price for a destination chain is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the premium multiplier is updated for a token.\\\"};duplicate=1\",\"expected\":\"Emitted when the premium multiplier is updated for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the price of a token is updated.\\\"};duplicate=1\",\"expected\":\"Emitted when the price of a token is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when token transfer fee configuration is deleted for a token on a destination chain.\\\"};duplicate=1\",\"expected\":\"Emitted when token transfer fee configuration is deleted for a token on a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when token transfer fee configuration is updated for a token on a destination chain.\\\"};duplicate=1\",\"expected\":\"Emitted when token transfer fee configuration is updated for a token on a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Extra data availability bytes from source pool sent to destination pool. Must be >= Pool.CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\"};duplicate=1\",\"expected\":\"Extra data availability bytes from source pool sent to destination pool. Must be >= Pool.CCIP_LOCK_OR_BURN_V1_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Extra data availability gas charged on top of the message, e.g. for OCR\\\"};duplicate=1\",\"expected\":\"Extra data availability gas charged on top of the message, e.g. for OCR\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Feed config update data\\\"};duplicate=1\",\"expected\":\"Feed config update data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flat network fee to charge for messages, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Flat network fee to charge for messages, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged on top of gasLimit to cover destination chain costs\\\"};duplicate=1\",\"expected\":\"Gas charged on top of gasLimit to cover destination chain costs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged to execute the token transfer on the destination chain\\\"};duplicate=1\",\"expected\":\"Gas charged to execute the token transfer on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK token address\\\"};duplicate=1\",\"expected\":\"LINK token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed fee in Juels per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed fee in Juels per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed message size\\\"};duplicate=1\",\"expected\":\"Maximum allowed message size\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee that can be charged for a message\\\"};duplicate=1\",\"expected\":\"Maximum fee that can be charged for a message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee to charge per token transfer, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Maximum fee to charge per token transfer, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum gas limit for messages targeting EVMs\\\"};duplicate=1\",\"expected\":\"Maximum gas limit for messages targeting EVMs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum number of distinct ERC20 tokens transferred per message\\\"};duplicate=1\",\"expected\":\"Maximum number of distinct ERC20 tokens transferred per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum payload data size in bytes\\\"};duplicate=1\",\"expected\":\"Maximum payload data size in bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum fee to charge per token transfer, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Minimum fee to charge per token transfer, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for data availability gas, multiples of bps, or 0.0001\\\"};duplicate=1\",\"expected\":\"Multiplier for data availability gas, multiples of bps, or 0.0001\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for gas costs, 1e18 based (e.g., 11e17 = 10% extra cost)\\\"};duplicate=1\",\"expected\":\"Multiplier for gas costs, 1e18 based (e.g., 11e17 = 10% extra cost)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Price of the token in USD with 18 decimals\\\"};duplicate=1\",\"expected\":\"Price of the token in USD with 18 decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=10\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=11\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=4\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=5\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=6\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=7\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=8\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=9\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Same as DestChainConfig but with the destChainSelector so that an array of these can be passed in the constructor and the applyDestChainConfigUpdates function.\\\"};duplicate=1\",\"expected\":\"Same as DestChainConfig but with the destChainSelector so that an array of these can be passed in the constructor and the applyDestChainConfigUpdates function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Same as TokenTransferFeeConfig but with the token address included so that an array of these can be passed in the TokenTransferFeeConfigArgs struct to set the mapping.\\\"};duplicate=1\",\"expected\":\"Same as TokenTransferFeeConfig but with the token address included so that an array of these can be passed in the TokenTransferFeeConfigArgs struct to set the mapping.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Same as TokenTransferFeeConfigSingleTokenArgs but with the destChainSelector and an array of TokenTransferFeeConfigSingleTokenArgs included so that an array of these can be passed in the constructor and the applyTokenTransferFeeConfigUpdates function.\\\"};duplicate=1\",\"expected\":\"Same as TokenTransferFeeConfigSingleTokenArgs but with the destChainSelector and an array of TokenTransferFeeConfigSingleTokenArgs included so that an array of these can be passed in the constructor and the applyTokenTransferFeeConfigUpdates function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Same as the s_premiumMultiplierWeiPerEth but with the token address included so that an array of these can be passed in the constructor and applyPremiumMultiplierWeiPerEthUpdates to set the mapping.\\\"};duplicate=1\",\"expected\":\"Same as the s_premiumMultiplierWeiPerEth but with the token address included so that an array of these can be passed in the constructor and applyPremiumMultiplierWeiPerEthUpdates to set the mapping.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Selector identifying the destination chain's family (determines validations)\\\"};duplicate=1\",\"expected\":\"Selector identifying the destination chain's family (determines validations)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source token to update feed for\\\"};duplicate=1\",\"expected\":\"Source token to update feed for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct that contains the static configuration.\\\"};duplicate=1\",\"expected\":\"Struct that contains the static configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold a pair of destination chain selector and token address.\\\"};duplicate=1\",\"expected\":\"Struct to hold a pair of destination chain selector and token address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold the configs and its destination chain selector.\\\"};duplicate=1\",\"expected\":\"Struct to hold the configs and its destination chain selector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold the fee & validation configs for a destination chain.\\\"};duplicate=1\",\"expected\":\"Struct to hold the fee & validation configs for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold the fee token configuration for a token.\\\"};duplicate=1\",\"expected\":\"Struct to hold the fee token configuration for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold the token transfer fee configurations for a destination chain and a set of tokens.\\\"};duplicate=1\",\"expected\":\"Struct to hold the token transfer fee configurations for a destination chain and a set of tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold the token transfer fee configurations for a token.\\\"};duplicate=1\",\"expected\":\"Struct to hold the token transfer fee configurations for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold the transfer fee configuration for token transfers.\\\"};duplicate=1\",\"expected\":\"Struct to hold the transfer fee configuration for token transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The base decimals for cost calculations.\\\"};duplicate=1\",\"expected\":\"The base decimals for cost calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The currently stored timestamp\\\"};duplicate=1\",\"expected\":\"The currently stored timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals that Keystone reports prices in.\\\"};duplicate=1\",\"expected\":\"The decimals that Keystone reports prices in.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain configuration\\\"};duplicate=1\",\"expected\":\"The destination chain configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector with invalid config\\\"};duplicate=1\",\"expected\":\"The destination chain selector with invalid config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=1\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=2\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=3\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=4\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=5\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=6\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The disabled destination chain selector\\\"};duplicate=1\",\"expected\":\"The disabled destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The fee token that was added\\\"};duplicate=1\",\"expected\":\"The fee token that was added\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The fee token that was removed\\\"};duplicate=1\",\"expected\":\"The fee token that was removed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid destination bytes overhead\\\"};duplicate=1\",\"expected\":\"The invalid destination bytes overhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new destination chain configuration\\\"};duplicate=1\",\"expected\":\"The new destination chain configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new gas price in USD (18 decimals)\\\"};duplicate=1\",\"expected\":\"The new gas price in USD (18 decimals)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new premium multiplier (wei per ETH)\\\"};duplicate=1\",\"expected\":\"The new premium multiplier (wei per ETH)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new price feed configuration\\\"};duplicate=1\",\"expected\":\"The new price feed configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token price in USD (18 decimals)\\\"};duplicate=1\",\"expected\":\"The new token price in USD (18 decimals)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token transfer fee configuration\\\"};duplicate=1\",\"expected\":\"The new token transfer fee configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The staleness threshold in seconds\\\"};duplicate=1\",\"expected\":\"The staleness threshold in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The struct representing the received CCIP feed report from Keystone IReceiver.onReport().\\\"};duplicate=1\",\"expected\":\"The struct representing the received CCIP feed report from Keystone IReceiver.onReport().\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The time passed since last update in seconds\\\"};duplicate=1\",\"expected\":\"The time passed since last update in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp from the feed update\\\"};duplicate=1\",\"expected\":\"The timestamp from the feed update\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp of the update\\\"};duplicate=1\",\"expected\":\"The timestamp of the update\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp of the update\\\"};duplicate=2\",\"expected\":\"The timestamp of the update\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=1\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=2\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=3\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=4\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=5\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=6\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=7\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token with oversized source data\\\"};duplicate=1\",\"expected\":\"The token with oversized source data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported fee token address\\\"};duplicate=1\",\"expected\":\"The unsupported fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported token address\\\"};duplicate=1\",\"expected\":\"The unsupported token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The version identifier for the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"The version identifier for the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a Keystone feed update is older than the currently stored timestamp.\\\"};duplicate=1\",\"expected\":\"Thrown when a Keystone feed update is older than the currently stored timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a data feed value cannot fit in a uint224.\\\"};duplicate=1\",\"expected\":\"Thrown when a data feed value cannot fit in a uint224.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\\\"};duplicate=1\",\"expected\":\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to get the price or fee for an unsupported token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to get the price or fee for an unsupported token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to send a message to a disabled destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to send a message to a disabled destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unsupported token for fee payment.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unsupported token for fee payment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\\\"};duplicate=1\",\"expected\":\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the destination bytes overhead configuration is invalid for a token.\\\"};duplicate=1\",\"expected\":\"Thrown when the destination bytes overhead configuration is invalid for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the destination chain configuration is invalid.\\\"};duplicate=1\",\"expected\":\"Thrown when the destination chain configuration is invalid.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the extra args tag is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"Thrown when the extra args tag is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the gas price for a destination chain is stale.\\\"};duplicate=1\",\"expected\":\"Thrown when the gas price for a destination chain is stale.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message data payload exceeds the maximum allowed size.\\\"};duplicate=1\",\"expected\":\"Thrown when the message data payload exceeds the maximum allowed size.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the number of tokens in a message exceeds the maximum allowed for the destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when the number of tokens in a message exceeds the maximum allowed for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the source token data size exceeds the maximum allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when the source token data size exceeds the maximum allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the static configuration provided during construction is invalid.\\\"};duplicate=1\",\"expected\":\"Thrown when the static configuration provided during construction is invalid.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time (seconds) a gas price can be stale before invalid (0 means disabled)\\\"};duplicate=1\",\"expected\":\"Time (seconds) a gas price can be stale before invalid (0 means disabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time (seconds) a token price can be stale before considered invalid\\\"};duplicate=1\",\"expected\":\"Time (seconds) a token price can be stale before considered invalid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Timestamp of the price update\\\"};duplicate=1\",\"expected\":\"Timestamp of the price update\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address\\\"};duplicate=1\",\"expected\":\"Token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address\\\"};duplicate=2\",\"expected\":\"Token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address\\\"};duplicate=3\",\"expected\":\"Token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address\\\"};duplicate=4\",\"expected\":\"Token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token price data feed configuration.\\\"};duplicate=1\",\"expected\":\"Token price data feed configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token price data feed update.\\\"};duplicate=1\",\"expected\":\"Token price data feed update.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfer fee configuration for token\\\"};duplicate=1\",\"expected\":\"Transfer fee configuration for token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to pass an array of these in the applyTokenTransferFeeConfigUpdates function to remove the token transfer fee configuration for a token.\\\"};duplicate=1\",\"expected\":\"Used to pass an array of these in the applyTokenTransferFeeConfigUpdates function to remove the token transfer fee configuration for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this destination chain is enabled\\\"};duplicate=1\",\"expected\":\"Whether this destination chain is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this token has custom transfer fees\\\"};duplicate=1\",\"expected\":\"Whether this token has custom transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether to enforce the allowOutOfOrderExecution extraArg value to be true\\\"};duplicate=1\",\"expected\":\"Whether to enforce the allowOutOfOrderExecution extraArg value to be true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actualSize\\\"};duplicate=1\",\"expected\":\"actualSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=12\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=13\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=14\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=15\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=1\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"dataFeedAddress\\\"};duplicate=1\",\"expected\":\"dataFeedAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"deciBps\\\"};duplicate=1\",\"expected\":\"deciBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenDestGasOverhead\\\"};duplicate=1\",\"expected\":\"defaultTokenDestGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenFeeUSDCents\\\"};duplicate=1\",\"expected\":\"defaultTokenFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTxGasLimit\\\"};duplicate=1\",\"expected\":\"defaultTxGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destBytesOverhead\\\"};duplicate=1\",\"expected\":\"destBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destBytesOverhead\\\"};duplicate=2\",\"expected\":\"destBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainConfig\\\"};duplicate=1\",\"expected\":\"destChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainConfig\\\"};duplicate=2\",\"expected\":\"destChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainConfig\\\"};duplicate=3\",\"expected\":\"destChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=3\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=4\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=5\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=6\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=7\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=8\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=9\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChain\\\"};duplicate=1\",\"expected\":\"destChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityMultiplierBps\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityMultiplierBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityOverheadGas\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityOverheadGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=1\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=2\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerDataAvailabilityByte\\\"};duplicate=1\",\"expected\":\"destGasPerDataAvailabilityByte\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByte\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByte\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"enforceOutOfOrder\\\"};duplicate=1\",\"expected\":\"enforceOutOfOrder\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeToken\\\"};duplicate=1\",\"expected\":\"feeToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeToken\\\"};duplicate=2\",\"expected\":\"feeToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feedConfig\\\"};duplicate=1\",\"expected\":\"feedConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feedTimestamp\\\"};duplicate=1\",\"expected\":\"feedTimestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasMultiplierWeiPerEth\\\"};duplicate=1\",\"expected\":\"gasMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"gasPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=1\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=2\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"linkToken\\\"};duplicate=1\",\"expected\":\"linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxDataBytes\\\"};duplicate=1\",\"expected\":\"maxDataBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=1\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=2\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeUSDCents\\\"};duplicate=1\",\"expected\":\"maxFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=1\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxPerMsgGasLimit\\\"};duplicate=1\",\"expected\":\"maxPerMsgGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSize\\\"};duplicate=1\",\"expected\":\"maxSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minFeeUSDCents\\\"};duplicate=1\",\"expected\":\"minFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"msgFeeJuels\\\"};duplicate=1\",\"expected\":\"msgFeeJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkFeeUSDCents\\\"};duplicate=1\",\"expected\":\"networkFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"premiumMultiplierWeiPerEth\\\"};duplicate=1\",\"expected\":\"premiumMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"premiumMultiplierWeiPerEth\\\"};duplicate=2\",\"expected\":\"premiumMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"priceFeedConfig\\\"};duplicate=1\",\"expected\":\"priceFeedConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"price\\\"};duplicate=1\",\"expected\":\"price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceToken\\\"};duplicate=1\",\"expected\":\"sourceToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"storedTimeStamp\\\"};duplicate=1\",\"expected\":\"storedTimeStamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"threshold\\\"};duplicate=1\",\"expected\":\"threshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timePassed\\\"};duplicate=1\",\"expected\":\"timePassed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp\\\"};duplicate=1\",\"expected\":\"timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp\\\"};duplicate=2\",\"expected\":\"timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp\\\"};duplicate=3\",\"expected\":\"timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenDecimals\\\"};duplicate=1\",\"expected\":\"tokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"tokenPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenTransferFeeConfig\\\"};duplicate=1\",\"expected\":\"tokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenTransferFeeConfig\\\"};duplicate=2\",\"expected\":\"tokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenTransferFeeConfigs\\\"};duplicate=1\",\"expected\":\"tokenTransferFeeConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=10\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=4\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=5\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=6\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=7\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=8\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=9\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=1\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=2\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=3\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=4\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=5\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=6\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=1\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=10\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=11\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=12\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=10\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=11\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=12\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=13\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=14\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=15\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=4\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=5\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=6\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=7\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=8\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=9\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint96\\\"};duplicate=1\",\"expected\":\"uint96\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"value\\\"};duplicate=1\",\"expected\":\"value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"value\\\"};duplicate=2\",\"expected\":\"value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if the given chain ID is supported for sending/receiving.\\\"};duplicate=1\",\"expected\":\"Checks if the given chain ID is supported for sending/receiving.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/i-type-and-version\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes32 internal constant ANY_2_EVM_MESSAGE_HASH = keccak256(\\\\\\\"Any2EVMMessageHashV1\\\\\\\");\\\"};duplicate=1\",\"expected\":\"bytes32 internal constant ANY_2_EVM_MESSAGE_HASH = keccak256(\\\"Any2EVMMessageHashV1\\\");\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes32 internal constant EVM_2_ANY_MESSAGE_HASH = keccak256(\\\\\\\"EVM2AnyMessageHashV1\\\\\\\");\\\"};duplicate=1\",\"expected\":\"bytes32 internal constant EVM_2_ANY_MESSAGE_HASH = keccak256(\\\"EVM2AnyMessageHashV1\\\");\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes32 internal constant EVM_2_EVM_MESSAGE_HASH = keccak256(\\\\\\\"EVM2EVMMessageHashV2\\\\\\\");\\\"};duplicate=1\",\"expected\":\"bytes32 internal constant EVM_2_EVM_MESSAGE_HASH = keccak256(\\\"EVM2EVMMessageHashV2\\\");\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant CHAIN_FAMILY_SELECTOR_EVM = 0x2812d52c;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant CHAIN_FAMILY_SELECTOR_EVM = 0x2812d52c;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"enum MessageExecutionState { UNTOUCHED, IN_PROGRESS, SUCCESS, FAILURE }\\\"};duplicate=1\",\"expected\":\"enum MessageExecutionState { UNTOUCHED, IN_PROGRESS, SUCCESS, FAILURE }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"enum OCRPluginType { Commit, Execution }\\\"};duplicate=1\",\"expected\":\"enum OCRPluginType { Commit, Execution }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _hash( Any2EVMRampMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\\\"};duplicate=1\",\"expected\":\"function _hash( Any2EVMRampMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _hash( EVM2AnyRampMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\\\"};duplicate=1\",\"expected\":\"function _hash( EVM2AnyRampMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _hash( EVM2EVMMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\\\"};duplicate=1\",\"expected\":\"function _hash( EVM2EVMMessage memory original, bytes32 metadataHash ) internal pure returns (bytes32);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateEVMAddress( bytes memory encodedAddress ) internal pure returns (address);\\\"};duplicate=1\",\"expected\":\"function _validateEVMAddress( bytes memory encodedAddress ) internal pure returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Any2EVMRampMessage { RampMessageHeader header; bytes sender; bytes data; address receiver; uint256 gasLimit; Any2EVMTokenTransfer[] tokenAmounts; }\\\"};duplicate=1\",\"expected\":\"struct Any2EVMRampMessage { RampMessageHeader header; bytes sender; bytes data; address receiver; uint256 gasLimit; Any2EVMTokenTransfer[] tokenAmounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Any2EVMTokenTransfer { bytes sourcePoolAddress; address destTokenAddress; uint32 destGasAmount; bytes extraData; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct Any2EVMTokenTransfer { bytes sourcePoolAddress; address destTokenAddress; uint32 destGasAmount; bytes extraData; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVM2AnyRampMessage { RampMessageHeader header; address sender; bytes data; bytes receiver; bytes extraArgs; address feeToken; uint256 feeTokenAmount; uint256 feeValueJuels; EVM2AnyTokenTransfer[] tokenAmounts; }\\\"};duplicate=1\",\"expected\":\"struct EVM2AnyRampMessage { RampMessageHeader header; address sender; bytes data; bytes receiver; bytes extraArgs; address feeToken; uint256 feeTokenAmount; uint256 feeValueJuels; EVM2AnyTokenTransfer[] tokenAmounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVM2AnyTokenTransfer { address sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint256 amount; bytes destExecData; }\\\"};duplicate=1\",\"expected\":\"struct EVM2AnyTokenTransfer { address sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint256 amount; bytes destExecData; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVM2EVMMessage { uint64 sourceChainSelector; address sender; address receiver; uint64 sequenceNumber; uint256 gasLimit; bool strict; uint64 nonce; address feeToken; uint256 feeTokenAmount; bytes data; Client.EVMTokenAmount[] tokenAmounts; bytes[] sourceTokenData; bytes32 messageId; }\\\"};duplicate=1\",\"expected\":\"struct EVM2EVMMessage { uint64 sourceChainSelector; address sender; address receiver; uint64 sequenceNumber; uint256 gasLimit; bool strict; uint64 nonce; address feeToken; uint256 feeTokenAmount; bytes data; Client.EVMTokenAmount[] tokenAmounts; bytes[] sourceTokenData; bytes32 messageId; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ExecutionReport { EVM2EVMMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\\\"};duplicate=1\",\"expected\":\"struct ExecutionReport { EVM2EVMMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ExecutionReportSingleChain { uint64 sourceChainSelector; Any2EVMRampMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\\\"};duplicate=1\",\"expected\":\"struct ExecutionReportSingleChain { uint64 sourceChainSelector; Any2EVMRampMessage[] messages; bytes[][] offchainTokenData; bytes32[] proofs; uint256 proofFlagBits; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct GasPriceUpdate { uint64 destChainSelector; uint224 usdPerUnitGas; }\\\"};duplicate=1\",\"expected\":\"struct GasPriceUpdate { uint64 destChainSelector; uint224 usdPerUnitGas; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct MerkleRoot { uint64 sourceChainSelector; bytes onRampAddress; uint64 minSeqNr; uint64 maxSeqNr; bytes32 merkleRoot; }\\\"};duplicate=1\",\"expected\":\"struct MerkleRoot { uint64 sourceChainSelector; bytes onRampAddress; uint64 minSeqNr; uint64 maxSeqNr; bytes32 merkleRoot; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct PoolUpdate { address token; address pool; }\\\"};duplicate=1\",\"expected\":\"struct PoolUpdate { address token; address pool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct PriceUpdates { TokenPriceUpdate[] tokenPriceUpdates; GasPriceUpdate[] gasPriceUpdates; }\\\"};duplicate=1\",\"expected\":\"struct PriceUpdates { TokenPriceUpdate[] tokenPriceUpdates; GasPriceUpdate[] gasPriceUpdates; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RampMessageHeader { bytes32 messageId; uint64 sourceChainSelector; uint64 destChainSelector; uint64 sequenceNumber; uint64 nonce; }\\\"};duplicate=1\",\"expected\":\"struct RampMessageHeader { bytes32 messageId; uint64 sourceChainSelector; uint64 destChainSelector; uint64 sequenceNumber; uint64 nonce; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SourceTokenData { bytes sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint32 destGasAmount; }\\\"};duplicate=1\",\"expected\":\"struct SourceTokenData { bytes sourcePoolAddress; bytes destTokenAddress; bytes extraData; uint32 destGasAmount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TimestampedPackedUint224 { uint224 value; uint32 timestamp; }\\\"};duplicate=1\",\"expected\":\"struct TimestampedPackedUint224 { uint224 value; uint32 timestamp; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenPriceUpdate { address sourceToken; uint224 usdPerToken; }\\\"};duplicate=1\",\"expected\":\"struct TokenPriceUpdate { address sourceToken; uint224 usdPerToken; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint16 internal constant GAS_FOR_CALL_EXACT_CHECK = 5_000;\\\"};duplicate=1\",\"expected\":\"uint16 internal constant GAS_FOR_CALL_EXACT_CHECK = 5_000;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint16 internal constant MAX_RET_BYTES = 4 + 4 * 32;\\\"};duplicate=1\",\"expected\":\"uint16 internal constant MAX_RET_BYTES = 4 + 4 * 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 internal constant MAX_BALANCE_OF_RET_BYTES = 32;\\\"};duplicate=1\",\"expected\":\"uint256 internal constant MAX_BALANCE_OF_RET_BYTES = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES = 32 * 14;\\\"};duplicate=1\",\"expected\":\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES = 32 * 14;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * ((2 * 3) + 3);\\\"};duplicate=1\",\"expected\":\"uint256 public constant ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * ((2 * 3) + 3);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant MESSAGE_FIXED_BYTES = 32 * 17;\\\"};duplicate=1\",\"expected\":\"uint256 public constant MESSAGE_FIXED_BYTES = 32 * 17;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * ((1 + 3 * 3) + 2);\\\"};duplicate=1\",\"expected\":\"uint256 public constant MESSAGE_FIXED_BYTES_PER_TOKEN = 32 * ((1 + 3 * 3) + 2);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant PRECOMPILE_SPACE = 1024;\\\"};duplicate=1\",\"expected\":\"uint256 public constant PRECOMPILE_SPACE = 1024;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 public constant GAS_PRICE_BITS = 112;\\\"};duplicate=1\",\"expected\":\"uint8 public constant GAS_PRICE_BITS = 112;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ANY_2_EVM_MESSAGE_FIXED_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ANY_2_EVM_MESSAGE_FIXED_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ANY_2_EVM_MESSAGE_HASH\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ANY_2_EVM_MESSAGE_HASH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Any2EVMRampMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Any2EVMRampMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Any2EVMTokenTransfer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Any2EVMTokenTransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CHAIN_FAMILY_SELECTOR_EVM\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CHAIN_FAMILY_SELECTOR_EVM\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM2AnyRampMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM2AnyRampMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM2AnyTokenTransfer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM2AnyTokenTransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM2EVMMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM2EVMMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_2_ANY_MESSAGE_HASH\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_2_ANY_MESSAGE_HASH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_2_EVM_MESSAGE_HASH\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_2_EVM_MESSAGE_HASH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Enums\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Enums\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExecutionReportSingleChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExecutionReportSingleChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExecutionReport\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExecutionReport\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GAS_FOR_CALL_EXACT_CHECK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GAS_FOR_CALL_EXACT_CHECK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GAS_PRICE_BITS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GAS_PRICE_BITS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GasPriceUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GasPriceUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MAX_BALANCE_OF_RET_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MAX_BALANCE_OF_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MAX_RET_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MAX_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MESSAGE_FIXED_BYTES\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MESSAGE_FIXED_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MESSAGE_FIXED_BYTES_PER_TOKEN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MESSAGE_FIXED_BYTES_PER_TOKEN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MerkleRoot\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MerkleRoot\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageExecutionState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageExecutionState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OCRPluginType\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OCRPluginType\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PRECOMPILE_SPACE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PRECOMPILE_SPACE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PriceUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PriceUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RampMessageHeader\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RampMessageHeader\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SourceTokenData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SourceTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TimestampedPackedUint224\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TimestampedPackedUint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenPriceUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenPriceUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_hash (Any2EVMRampMessage)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_hash (Any2EVMRampMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_hash (EVM2AnyRampMessage)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_hash (EVM2AnyRampMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_hash (EVM2EVMMessage)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_hash (EVM2EVMMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateEVMAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateEVMAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Any2EVMRampMessage[]\\\",\\\"url\\\":\\\"#any2evmrampmessage\\\"};duplicate=1\",\"expected\":\"Any2EVMRampMessage[] -> #any2evmrampmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Any2EVMRampMessage\\\",\\\"url\\\":\\\"#any2evmrampmessage\\\"};duplicate=1\",\"expected\":\"Any2EVMRampMessage -> #any2evmrampmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Any2EVMTokenTransfer[]\\\",\\\"url\\\":\\\"#any2evmtokentransfer\\\"};duplicate=1\",\"expected\":\"Any2EVMTokenTransfer[] -> #any2evmtokentransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#ccip_lock_or_burn_v1_ret_bytes\\\"};duplicate=1\",\"expected\":\"CCIP_LOCK_OR_BURN_V1_RET_BYTES -> /ccip/api-reference/evm/v1.5.1/pool#ccip_lock_or_burn_v1_ret_bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2AnyRampMessage\\\",\\\"url\\\":\\\"#evm2anyrampmessage\\\"};duplicate=1\",\"expected\":\"EVM2AnyRampMessage -> #evm2anyrampmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2AnyTokenTransfer[]\\\",\\\"url\\\":\\\"#evm2anytokentransfer\\\"};duplicate=1\",\"expected\":\"EVM2AnyTokenTransfer[] -> #evm2anytokentransfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2EVMMessage[]\\\",\\\"url\\\":\\\"#evm2evmmessage\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage[] -> #evm2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVM2EVMMessage\\\",\\\"url\\\":\\\"#evm2evmmessage\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage -> #evm2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GasPriceUpdate[]\\\",\\\"url\\\":\\\"#gaspriceupdate\\\"};duplicate=1\",\"expected\":\"GasPriceUpdate[] -> #gaspriceupdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RampMessageHeader\\\",\\\"url\\\":\\\"#rampmessageheader\\\"};duplicate=1\",\"expected\":\"RampMessageHeader -> #rampmessageheader\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RampMessageHeader\\\",\\\"url\\\":\\\"#rampmessageheader\\\"};duplicate=2\",\"expected\":\"RampMessageHeader -> #rampmessageheader\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenPriceUpdate[]\\\",\\\"url\\\":\\\"#tokenpriceupdate\\\"};duplicate=1\",\"expected\":\"TokenPriceUpdate[] -> #tokenpriceupdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/fee-quoter#tokentransferfeeconfig\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfig -> /ccip/api-reference/evm/v1.5.1/fee-quoter#tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".destBytesOverhead is set\\\"};duplicate=1\",\"expected\":\".destBytesOverhead is set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1e18 USD per 1e18 of the smallest token denomination\\\"};duplicate=1\",\"expected\":\"1e18 USD per 1e18 of the smallest token denomination\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1e18 USD per smallest unit (e.g. wei) of destination chain gas\\\"};duplicate=1\",\"expected\":\"1e18 USD per smallest unit (e.g. wei) of destination chain gas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A collection of token price and gas price updates.\\\"};duplicate=1\",\"expected\":\"A collection of token price and gas price updates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A timestamped uint224 value that can contain several tightly packed fields.\\\"};duplicate=1\",\"expected\":\"A timestamped uint224 value that can contain several tightly packed fields.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of destination token\\\"};duplicate=1\",\"expected\":\"Address of destination token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of fee token paid\\\"};duplicate=1\",\"expected\":\"Amount of fee token paid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=2\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any2EVMRampMessage struct has 10 fields, including 3 variable unnested arrays (data, receiver and tokenAmounts). Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, Any2EVMMessage takes up a fixed number of 13 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 14. The fixed bytes does not cover struct data (this is represented by ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN).\\\"};duplicate=1\",\"expected\":\"Any2EVMRampMessage struct has 10 fields, including 3 variable unnested arrays (data, receiver and tokenAmounts). Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, Any2EVMMessage takes up a fixed number of 13 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 14. The fixed bytes does not cover struct data (this is represented by ANY_2_EVM_MESSAGE_FIXED_BYTES_PER_TOKEN).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrary data payload supplied by the message sender\\\"};duplicate=1\",\"expected\":\"Arbitrary data payload supplied by the message sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrary data payload supplied by the message sender\\\"};duplicate=2\",\"expected\":\"Arbitrary data payload supplied by the message sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrary data payload supplied by the message sender\\\"};duplicate=3\",\"expected\":\"Arbitrary data payload supplied by the message sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of gas price updates\\\"};duplicate=1\",\"expected\":\"Array of gas price updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of messages to execute\\\"};duplicate=1\",\"expected\":\"Array of messages to execute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of messages to execute\\\"};duplicate=2\",\"expected\":\"Array of messages to execute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of token data, one per token\\\"};duplicate=1\",\"expected\":\"Array of token data, one per token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of token price updates\\\"};duplicate=1\",\"expected\":\"Array of token price updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of tokens and amounts to transfer\\\"};duplicate=1\",\"expected\":\"Array of tokens and amounts to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of tokens and amounts to transfer\\\"};duplicate=2\",\"expected\":\"Array of tokens and amounts to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of tokens and amounts to transfer\\\"};duplicate=3\",\"expected\":\"Array of tokens and amounts to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap of proof flags\\\"};duplicate=1\",\"expected\":\"Bitmap of proof flags\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap of proof flags\\\"};duplicate=2\",\"expected\":\"Bitmap of proof flags\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bytes array for each message, per transferred token\\\"};duplicate=1\",\"expected\":\"Bytes array for each message, per transferred token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bytes array for each message, per transferred token\\\"};duplicate=2\",\"expected\":\"Bytes array for each message, per transferred token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP OCR plugin type, used to separate execution & commit transmissions and configs.\\\"};duplicate=1\",\"expected\":\"CCIP OCR plugin type, used to separate execution & commit transmissions and configs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP chain selector of the destination chain (not chainId)\\\"};duplicate=1\",\"expected\":\"CCIP chain selector of the destination chain (not chainId)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP chain selector of the source chain (not chainId)\\\"};duplicate=1\",\"expected\":\"CCIP chain selector of the source chain (not chainId)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for EVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector EVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for EVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector EVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector of the source chain (not chainId)\\\"};duplicate=1\",\"expected\":\"Chain selector of the source chain (not chainId)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client.EVMTokenAmount[]\\\"};duplicate=1\",\"expected\":\"Client.EVMTokenAmount[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Commit: Commitment phase OCR plugin\\\"};duplicate=1\",\"expected\":\"Commit: Commitment phase OCR plugin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains trusted and untrusted data for EVM-sourced token transfers:\\\"};duplicate=1\",\"expected\":\"Contains trusted and untrusted data for EVM-sourced token transfers:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains trusted and untrusted data:\\\"};duplicate=1\",\"expected\":\"Contains trusted and untrusted data:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"DEPRECATED\\\"};duplicate=1\",\"expected\":\"DEPRECATED\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain execution data (e.g., gas amount for EVM chains)\\\"};duplicate=1\",\"expected\":\"Destination chain execution data (e.g., gas amount for EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=1\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination token address, abi encoded for EVM chains (untrusted)\\\"};duplicate=1\",\"expected\":\"Destination token address, abi encoded for EVM chains (untrusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination-chain specific args (e.g., gasLimit for EVM)\\\"};duplicate=1\",\"expected\":\"Destination-chain specific args (e.g., gasLimit for EVM)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Disallows the first 1024 addresses (PRECOMPILE_SPACE) and the zero address.\\\"};duplicate=1\",\"expected\":\"Disallows the first 1024 addresses (PRECOMPILE_SPACE) and the zero address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Distinguishes between:\\\"};duplicate=1\",\"expected\":\"Distinguishes between:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM address of the destination token (untrusted)\\\"};duplicate=1\",\"expected\":\"EVM address of the destination token (untrusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM2EVMMessage struct has 13 fields, including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up a fixed number of 16 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 17.\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage struct has 13 fields, including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up a fixed number of 16 slots, 32 bytes each. For structs that contain arrays, 1 more slot is added to the front, reaching a total of 17.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Each token transfer adds 1 EVMTokenAmount and 3 bytes at 3 slots each and one slot for the destGasAmount. When abi encoded, each EVMTokenAmount takes 2 slots, each bytes takes 1 slot for length, one slot of data and one slot for the offset. This results in effectively 3*3 slots per SourceTokenData.\\\"};duplicate=1\",\"expected\":\"Each token transfer adds 1 EVMTokenAmount and 3 bytes at 3 slots each and one slot for the destGasAmount. When abi encoded, each EVMTokenAmount takes 2 slots, each bytes takes 1 slot for length, one slot of data and one slot for the offset. This results in effectively 3*3 slots per SourceTokenData.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Each token transfer adds 1 RampTokenAmount. RampTokenAmount has 5 fields, 2 of which are bytes type, 1 Address, 1 uint256 and 1 uint32. Each bytes type takes 1 slot for length, 1 slot for data and 1 slot for the offset. Address, uint256 amount, and uint32 destGasAmount each take 1 slot.\\\"};duplicate=1\",\"expected\":\"Each token transfer adds 1 RampTokenAmount. RampTokenAmount has 5 fields, 2 of which are bytes type, 1 Address, 1 uint256 and 1 uint32. Each bytes type takes 1 slot for length, 1 slot for data and 1 slot for the offset. Address, uint256 amount, and uint32 destGasAmount each take 1 slot.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted in the CCIPMessageSent event. The messageId equals hash(EVM2AnyRampMessage) using the source EVM chain's encoding format. Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) due to encoding and parameter differences.\\\"};duplicate=1\",\"expected\":\"Emitted in the CCIPMessageSent event. The messageId equals hash(EVM2AnyRampMessage) using the source EVM chain's encoding format. Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) due to encoding and parameter differences.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enum listing the possible message execution states within the offRamp contract.\\\"};duplicate=1\",\"expected\":\"Enum listing the possible message execution states within the offRamp contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execution: Execution phase OCR plugin\\\"};duplicate=1\",\"expected\":\"Execution: Execution phase OCR plugin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"FAILURE: Unsuccessfully executed, manual execution is now enabled\\\"};duplicate=1\",\"expected\":\"FAILURE: Unsuccessfully executed, manual execution is now enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Family-agnostic header for OnRamp & OffRamp messages.\\\"};duplicate=1\",\"expected\":\"Family-agnostic header for OnRamp & OffRamp messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Family-agnostic message emitted from the OnRamp.\\\"};duplicate=1\",\"expected\":\"Family-agnostic message emitted from the OnRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Family-agnostic message routed to an OffRamp.\\\"};duplicate=1\",\"expected\":\"Family-agnostic message routed to an OffRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee amount denominated in Juels\\\"};duplicate=1\",\"expected\":\"Fee amount denominated in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee token address\\\"};duplicate=1\",\"expected\":\"Fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee token amount\\\"};duplicate=1\",\"expected\":\"Fee token amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas available for releaseOrMint and balanceOf calls on the offRamp\\\"};duplicate=1\",\"expected\":\"Gas available for releaseOrMint and balanceOf calls on the offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas available for releaseOrMint and transfer calls on the offRamp\\\"};duplicate=1\",\"expected\":\"Gas available for releaseOrMint and transfer calls on the offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas price for a given chain in USD, its value may contain tightly packed fields.\\\"};duplicate=1\",\"expected\":\"Gas price for a given chain in USD, its value may contain tightly packed fields.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas price is stored in 112-bit unsigned int. uint224 can pack 2 prices. When packing L1 and L2 gas prices, L1 gas price is left-shifted to the higher-order bits.\\\"};duplicate=1\",\"expected\":\"Gas price is stored in 112-bit unsigned int. uint224 can pack 2 prices. When packing L1 and L2 gas prices, L1 gas price is left-shifted to the higher-order bits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Generic onramp address (for EVM, use abi.encode)\\\"};duplicate=1\",\"expected\":\"Generic onramp address (for EVM, use abi.encode)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash identifier for Any to EVM messages version 1.\\\"};duplicate=1\",\"expected\":\"Hash identifier for Any to EVM messages version 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash identifier for EVM to Any messages version 1.\\\"};duplicate=1\",\"expected\":\"Hash identifier for EVM to Any messages version 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash identifier for EVM to EVM messages version 2.\\\"};duplicate=1\",\"expected\":\"Hash identifier for EVM to EVM messages version 2.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash of the message data\\\"};duplicate=1\",\"expected\":\"Hash of the message data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash preimage to ensure global uniqueness\\\"};duplicate=1\",\"expected\":\"Hash preimage to ensure global uniqueness\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hash preimage to ensure global uniqueness\\\"};duplicate=2\",\"expected\":\"Hash preimage to ensure global uniqueness\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hashed message as a keccak256\\\"};duplicate=1\",\"expected\":\"Hashed message as a keccak256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hashed message as a keccak256\\\"};duplicate=2\",\"expected\":\"Hashed message as a keccak256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hashed message as a keccak256\\\"};duplicate=3\",\"expected\":\"Hashed message as a keccak256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IN_PROGRESS: Currently being executed, used as replay protection\\\"};duplicate=1\",\"expected\":\"IN_PROGRESS: Currently being executed, used as replay protection\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Immutable metadata hash representing a lane with a fixed OnRamp\\\"};duplicate=1\",\"expected\":\"Immutable metadata hash representing a lane with a fixed OnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum return data limited to a selector plus 4 words. This avoids malicious contracts from returning large amounts of data and causing repeated out-of-gas scenarios.\\\"};duplicate=1\",\"expected\":\"Maximum return data limited to a selector plus 4 words. This avoids malicious contracts from returning large amounts of data and causing repeated out-of-gas scenarios.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum sequence number, inclusive\\\"};duplicate=1\",\"expected\":\"Maximum sequence number, inclusive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Merkle proofs\\\"};duplicate=1\",\"expected\":\"Merkle proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Merkle proofs\\\"};duplicate=2\",\"expected\":\"Merkle proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Merkle root covering the interval & source chain messages\\\"};duplicate=1\",\"expected\":\"Merkle root covering the interval & source chain messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message header with identifiers and routing information\\\"};duplicate=1\",\"expected\":\"Message header with identifiers and routing information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message header with identifiers and routing information\\\"};duplicate=2\",\"expected\":\"Message header with identifiers and routing information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message to hash\\\"};duplicate=1\",\"expected\":\"Message to hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum sequence number, inclusive\\\"};duplicate=1\",\"expected\":\"Minimum sequence number, inclusive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Nonce for this lane and sender, not unique across lanes\\\"};duplicate=1\",\"expected\":\"Nonce for this lane and sender, not unique across lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Nonce for this lane and sender, not unique across senders/lanes\\\"};duplicate=1\",\"expected\":\"Nonce for this lane and sender, not unique across senders/lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) and hash(Any2EVMRampMessage) != messageId due to encoding & parameter differences.\\\"};duplicate=1\",\"expected\":\"Note: hash(Any2EVMRampMessage) != hash(EVM2AnyRampMessage) and hash(Any2EVMRampMessage) != messageId due to encoding & parameter differences.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OffRamp message to hash\\\"};duplicate=1\",\"expected\":\"OffRamp message to hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp hash(EVM2AnyMessage) != Any2EVMRampMessage.messageId\\\"};duplicate=1\",\"expected\":\"OnRamp hash(EVM2AnyMessage) != Any2EVMRampMessage.messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp hash(EVM2AnyMessage) != OffRamp hash(Any2EVMRampMessage)\\\"};duplicate=1\",\"expected\":\"OnRamp hash(EVM2AnyMessage) != OffRamp hash(Any2EVMRampMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp hash(EVM2EVMMessage) = OffRamp hash(EVM2EVMMessage)\\\"};duplicate=1\",\"expected\":\"OnRamp hash(EVM2EVMMessage) = OffRamp hash(EVM2EVMMessage)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnRamp message to hash\\\"};duplicate=1\",\"expected\":\"OnRamp message to hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional pool data transferred to destination chain\\\"};duplicate=1\",\"expected\":\"Optional pool data transferred to destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional pool data transferred to destination chain\\\"};duplicate=2\",\"expected\":\"Optional pool data transferred to destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional pool data transferred to destination chain\\\"};duplicate=3\",\"expected\":\"Optional pool data transferred to destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=10\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=11\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=12\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=13\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=14\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=15\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=4\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=5\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=6\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=7\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=8\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=9\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this enum. If changing, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"RMN depends on this enum. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=2\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=3\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=4\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=5\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=6\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN depends on this struct. If changing, please notify the RMN maintainers.\\\"};duplicate=7\",\"expected\":\"RMN depends on this struct. If changing, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver address on the destination chain\\\"};duplicate=1\",\"expected\":\"Receiver address on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver address on the destination chain\\\"};duplicate=2\",\"expected\":\"Receiver address on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver address on the destination chain\\\"};duplicate=3\",\"expected\":\"Receiver address on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Remote source chain selector that the Merkle Root is scoped to\\\"};duplicate=1\",\"expected\":\"Remote source chain selector that the Merkle Root is scoped to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submitted by the execution DON at the execution phase (including chain selector data).\\\"};duplicate=1\",\"expected\":\"Report submitted by the execution DON at the execution phase (including chain selector data).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submitted by the execution DON at the execution phase.\\\"};duplicate=1\",\"expected\":\"Report submitted by the execution DON at the execution phase.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SUCCESS: Successfully executed (end state)\\\"};duplicate=1\",\"expected\":\"SUCCESS: Successfully executed (end state)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender address on the source chain\\\"};duplicate=1\",\"expected\":\"Sender address on the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender address on the source chain\\\"};duplicate=2\",\"expected\":\"Sender address on the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender address on the source chain\\\"};duplicate=3\",\"expected\":\"Sender address on the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sequence number, not unique across lanes\\\"};duplicate=1\",\"expected\":\"Sequence number, not unique across lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sequence number, not unique across lanes\\\"};duplicate=2\",\"expected\":\"Sequence number, not unique across lanes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source chain selector for which report is submitted\\\"};duplicate=1\",\"expected\":\"Source chain selector for which report is submitted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool EVM address (trusted)\\\"};duplicate=1\",\"expected\":\"Source pool EVM address (trusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool EVM address encoded to bytes (trusted)\\\"};duplicate=1\",\"expected\":\"Source pool EVM address encoded to bytes (trusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool address, abi encoded (trusted)\\\"};duplicate=1\",\"expected\":\"Source pool address, abi encoded (trusted)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source token address\\\"};duplicate=1\",\"expected\":\"Source token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"States represent the message execution lifecycle:\\\"};duplicate=1\",\"expected\":\"States represent the message execution lifecycle:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Struct to hold a merkle root and an interval for a source chain.\\\"};duplicate=1\",\"expected\":\"Struct to hold a merkle root and an interval for a source chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing token-specific data from the source chain.\\\"};duplicate=1\",\"expected\":\"Structure containing token-specific data from the source chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for token pool updates.\\\"};duplicate=1\",\"expected\":\"Structure for token pool updates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token transfers from EVM chains to any destination chain.\\\"};duplicate=1\",\"expected\":\"Structure representing token transfers from EVM chains to any destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token transfers from any source chain to EVM chains.\\\"};duplicate=1\",\"expected\":\"Structure representing token transfers from any source chain to EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The EVM2EVMMessage's messageId is expected to be the output of this hash function.\\\"};duplicate=1\",\"expected\":\"The EVM2EVMMessage's messageId is expected to be the output of this hash function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The IERC20 token address\\\"};duplicate=1\",\"expected\":\"The IERC20 token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The abi-encoded address to validate\\\"};duplicate=1\",\"expected\":\"The abi-encoded address to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The cross chain message that gets committed to EVM chains.\\\"};duplicate=1\",\"expected\":\"The cross chain message that gets committed to EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of bytes returned by the balanceOf function.\\\"};duplicate=1\",\"expected\":\"The expected number of bytes returned by the balanceOf function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The first 1024 addresses are disallowed to avoid calling into a range known for hosting precompiles. Calling into precompiles probably won't cause issues, but this is a conservative safety measure. While there is no official range of precompiles, EIP-7587 proposes to reserve the range 0x100 to 0x1ff. This range is more conservative. The zero address is also disallowed as a common practice.\\\"};duplicate=1\",\"expected\":\"The first 1024 addresses are disallowed to avoid calling into a range known for hosting precompiles. Calling into precompiles probably won't cause issues, but this is a conservative safety measure. While there is no official range of precompiles, EIP-7587 proposes to reserve the range 0x100 to 0x1ff. This range is more conservative. The zero address is also disallowed as a common practice.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid encoded address\\\"};duplicate=1\",\"expected\":\"The invalid encoded address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The messageId is not expected to match hash(message), since it may originate from another ramp family. All identifiers are CCIP-specific, not chain-native identifiers.\\\"};duplicate=1\",\"expected\":\"The messageId is not expected to match hash(message), since it may originate from another ramp family. All identifiers are CCIP-specific, not chain-native identifiers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The minimum amount of gas to perform the call with exact gas. Included in the offramp so it can be redeployed to adjust should a hardfork change the gas costs of relevant opcodes in callWithExactGas.\\\"};duplicate=1\",\"expected\":\"The minimum amount of gas to perform the call with exact gas. Included in the offramp so it can be redeployed to adjust should a hardfork change the gas costs of relevant opcodes in callWithExactGas.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address is TRUSTED as it was obtained through the onRamp and can be relied upon by the destination pool to validate the source pool.\\\"};duplicate=1\",\"expected\":\"The source pool address is TRUSTED as it was obtained through the onRamp and can be relied upon by the destination pool to validate the source pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The struct has 10 fields including 3 variable unnested arrays (data, receiver and tokenAmounts). When abi encoded, excluding array contents, it takes up 13 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 14.\\\"};duplicate=1\",\"expected\":\"The struct has 10 fields including 3 variable unnested arrays (data, receiver and tokenAmounts). When abi encoded, excluding array contents, it takes up 13 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 14.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The struct has 13 fields including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up 16 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 17.\\\"};duplicate=1\",\"expected\":\"The struct has 13 fields including 3 variable arrays. Each variable array takes 1 more slot to store its length. When abi encoded, excluding array contents, EVM2EVMMessage takes up 16 slots of 32 bytes each. For structs containing arrays, 1 more slot is added to the front, reaching a total of 17.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token pool address\\\"};duplicate=1\",\"expected\":\"The token pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\\\"};duplicate=1\",\"expected\":\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\\\"};duplicate=2\",\"expected\":\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\\\"};duplicate=3\",\"expected\":\"This hashing scheme is also used by RMN. If changing it, please notify the RMN maintainers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses inefficient packing intentionally chosen to maintain order of specificity. Not a storage struct so impact is minimal.\\\"};duplicate=1\",\"expected\":\"This struct uses inefficient packing intentionally chosen to maintain order of specificity. Not a storage struct so impact is minimal.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an encoded address is invalid (wrong length or outside valid EVM address range).\\\"};duplicate=1\",\"expected\":\"Thrown when an encoded address is invalid (wrong length or outside valid EVM address range).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Timestamp of the most recent price update\\\"};duplicate=1\",\"expected\":\"Timestamp of the most recent price update\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token price in USD.\\\"};duplicate=1\",\"expected\":\"Token price in USD.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token used to pay fees\\\"};duplicate=1\",\"expected\":\"Token used to pay fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"UNTOUCHED: Never executed\\\"};duplicate=1\",\"expected\":\"UNTOUCHED: Never executed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unique identifier generated with source chain's encoding scheme\\\"};duplicate=1\",\"expected\":\"Unique identifier generated with source chain's encoding scheme\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to hash messages for multi-lane family-agnostic OffRamps.\\\"};duplicate=1\",\"expected\":\"Used to hash messages for multi-lane family-agnostic OffRamps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to hash messages for multi-lane family-agnostic OnRamps.\\\"};duplicate=1\",\"expected\":\"Used to hash messages for multi-lane family-agnostic OnRamps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to hash messages for single-lane ramps.\\\"};duplicate=1\",\"expected\":\"Used to hash messages for single-lane ramps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User supplied maximum gas for destination chain execution\\\"};duplicate=1\",\"expected\":\"User supplied maximum gas for destination chain execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User supplied maximum gas for destination chain execution\\\"};duplicate=2\",\"expected\":\"User supplied maximum gas for destination chain execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates parsing of abi encoded addresses by ensuring the address is within the EVM address space. If it isn't, it will revert with an InvalidEVMAddress error, which can be caught and handled more gracefully than a revert from abi.decode.\\\"};duplicate=1\",\"expected\":\"Validates parsing of abi encoded addresses by ensuring the address is within the EVM address space. If it isn't, it will revert with an InvalidEVMAddress error, which can be caught and handled more gracefully than a revert from abi.decode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value in uint224, can contain packed fields\\\"};duplicate=1\",\"expected\":\"Value in uint224, can contain packed fields\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=1\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=2\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=1\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=2\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=3\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=4\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=5\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=6\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=7\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=8\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=9\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[][]\\\"};duplicate=1\",\"expected\":\"bytes[][]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[][]\\\"};duplicate=2\",\"expected\":\"bytes[][]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=10\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=11\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=12\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=13\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=14\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=15\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=16\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=9\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=1\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=2\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=3\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destExecData\\\"};duplicate=1\",\"expected\":\"destExecData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasAmount\\\"};duplicate=1\",\"expected\":\"destGasAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasAmount\\\"};duplicate=2\",\"expected\":\"destGasAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress is UNTRUSTED (pool owner can return any value)\\\"};duplicate=1\",\"expected\":\"destTokenAddress is UNTRUSTED (pool owner can return any value)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress is UNTRUSTED (pool owner can return any value)\\\"};duplicate=2\",\"expected\":\"destTokenAddress is UNTRUSTED (pool owner can return any value)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress\\\"};duplicate=1\",\"expected\":\"destTokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress\\\"};duplicate=2\",\"expected\":\"destTokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destTokenAddress\\\"};duplicate=3\",\"expected\":\"destTokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"encodedAddress\\\"};duplicate=1\",\"expected\":\"encodedAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData is capped at CCIP_LOCK_OR_BURN_V1_RET_BYTES unless TokenTransferFeeConfig.destBytesOverhead is set\\\"};duplicate=1\",\"expected\":\"extraData is capped at CCIP_LOCK_OR_BURN_V1_RET_BYTES unless TokenTransferFeeConfig.destBytesOverhead is set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData is capped at\\\"};duplicate=1\",\"expected\":\"extraData is capped at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData\\\"};duplicate=1\",\"expected\":\"extraData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData\\\"};duplicate=2\",\"expected\":\"extraData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraData\\\"};duplicate=3\",\"expected\":\"extraData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeTokenAmount\\\"};duplicate=1\",\"expected\":\"feeTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeTokenAmount\\\"};duplicate=2\",\"expected\":\"feeTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeToken\\\"};duplicate=1\",\"expected\":\"feeToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeToken\\\"};duplicate=2\",\"expected\":\"feeToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feeValueJuels\\\"};duplicate=1\",\"expected\":\"feeValueJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=2\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceUpdates\\\"};duplicate=1\",\"expected\":\"gasPriceUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hashedMessage\\\"};duplicate=1\",\"expected\":\"hashedMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hashedMessage\\\"};duplicate=2\",\"expected\":\"hashedMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hashedMessage\\\"};duplicate=3\",\"expected\":\"hashedMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"header\\\"};duplicate=1\",\"expected\":\"header\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"header\\\"};duplicate=2\",\"expected\":\"header\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSeqNr\\\"};duplicate=1\",\"expected\":\"maxSeqNr\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"merkleRoot\\\"};duplicate=1\",\"expected\":\"merkleRoot\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messageId\\\"};duplicate=1\",\"expected\":\"messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messageId\\\"};duplicate=2\",\"expected\":\"messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messages\\\"};duplicate=1\",\"expected\":\"messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messages\\\"};duplicate=2\",\"expected\":\"messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"metadataHash\\\"};duplicate=1\",\"expected\":\"metadataHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"metadataHash\\\"};duplicate=2\",\"expected\":\"metadataHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"metadataHash\\\"};duplicate=3\",\"expected\":\"metadataHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minSeqNr\\\"};duplicate=1\",\"expected\":\"minSeqNr\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nonce\\\"};duplicate=1\",\"expected\":\"nonce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nonce\\\"};duplicate=2\",\"expected\":\"nonce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"offchainTokenData\\\"};duplicate=1\",\"expected\":\"offchainTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"offchainTokenData\\\"};duplicate=2\",\"expected\":\"offchainTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"onRampAddress\\\"};duplicate=1\",\"expected\":\"onRampAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"original\\\"};duplicate=1\",\"expected\":\"original\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"original\\\"};duplicate=2\",\"expected\":\"original\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"original\\\"};duplicate=3\",\"expected\":\"original\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pool\\\"};duplicate=1\",\"expected\":\"pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofFlagBits\\\"};duplicate=1\",\"expected\":\"proofFlagBits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofFlagBits\\\"};duplicate=2\",\"expected\":\"proofFlagBits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofs\\\"};duplicate=1\",\"expected\":\"proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"proofs\\\"};duplicate=2\",\"expected\":\"proofs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=2\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=3\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sequenceNumber\\\"};duplicate=1\",\"expected\":\"sequenceNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sequenceNumber\\\"};duplicate=2\",\"expected\":\"sequenceNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=1\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=2\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=3\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceChainSelector\\\"};duplicate=4\",\"expected\":\"sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\\\"};duplicate=1\",\"expected\":\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\\\"};duplicate=2\",\"expected\":\"sourcePoolAddress is TRUSTED (obtained through the onRamp)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress\\\"};duplicate=1\",\"expected\":\"sourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress\\\"};duplicate=2\",\"expected\":\"sourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolAddress\\\"};duplicate=3\",\"expected\":\"sourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceTokenData\\\"};duplicate=1\",\"expected\":\"sourceTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceToken\\\"};duplicate=1\",\"expected\":\"sourceToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"strict\\\"};duplicate=1\",\"expected\":\"strict\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp\\\"};duplicate=1\",\"expected\":\"timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAmounts\\\"};duplicate=1\",\"expected\":\"tokenAmounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAmounts\\\"};duplicate=2\",\"expected\":\"tokenAmounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAmounts\\\"};duplicate=3\",\"expected\":\"tokenAmounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceUpdates\\\"};duplicate=1\",\"expected\":\"tokenPriceUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=1\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=2\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint224\\\"};duplicate=3\",\"expected\":\"uint224\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"unless\\\"};duplicate=1\",\"expected\":\"unless\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"usdPerToken\\\"};duplicate=1\",\"expected\":\"usdPerToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"usdPerUnitGas\\\"};duplicate=1\",\"expected\":\"usdPerUnitGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"value\\\"};duplicate=1\",\"expected\":\"value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=2\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=3\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=4\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=5\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rebalancer;\\\"};duplicate=1\",\"expected\":\"address internal s_rebalancer;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_acceptLiquidity;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_acceptLiquidity;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InsufficientLiquidity();\\\"};duplicate=1\",\"expected\":\"error InsufficientLiquidity();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error LiquidityNotAccepted();\\\"};duplicate=1\",\"expected\":\"error LiquidityNotAccepted();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function canAcceptLiquidity() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function canAcceptLiquidity() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRebalancer() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRebalancer() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function provideLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function provideLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRebalancer(address rebalancer) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRebalancer(address rebalancer) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function withdrawLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function withdrawLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant override typeAndVersion = \\\\\\\"LockReleaseTokenPool 1.5.1\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant override typeAndVersion = \\\"LockReleaseTokenPool 1.5.1\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InsufficientLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InsufficientLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LiquidityNotAccepted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LiquidityNotAccepted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"canAcceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"canAcceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_acceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"provideLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"provideLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"withdrawLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"withdrawLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.5.1/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.5.1/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.5.1/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/pool#releaseormintoutv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintOutV1 -> /ccip/api-reference/evm/v1.5.1/pool#releaseormintoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier specifying the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier specifying the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the RMN proxy contract\\\"};duplicate=1\",\"expected\":\"Address of the RMN proxy contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the router contract\\\"};duplicate=1\",\"expected\":\"Address of the router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds external liquidity to the pool.\\\"};duplicate=1\",\"expected\":\"Adds external liquidity to the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the owner to update the liquidity manager (rebalancer) address.\\\"};duplicate=1\",\"expected\":\"Allows the owner to update the liquidity manager (rebalancer) address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to add liquidity to the pool:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to add liquidity to the pool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to withdraw liquidity:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to withdraw liquidity:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP handles mint/burn operations on other chains\\\"};duplicate=1\",\"expected\":\"CCIP handles mint/burn operations on other chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates correct local token amounts using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates correct local token amounts using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can be used in conjunction with TokenAdminRegistry updates\\\"};duplicate=1\",\"expected\":\"Can be used in conjunction with TokenAdminRegistry updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks interface support using ERC165.\\\"};duplicate=1\",\"expected\":\"Checks interface support using ERC165.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures decimal precision for local tokens\\\"};duplicate=1\",\"expected\":\"Configures decimal precision for local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the final amount released in local tokens\\\"};duplicate=1\",\"expected\":\"Contains the final amount released in local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the pool can accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Determines whether the pool can accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Locked event upon successful locking\\\"};duplicate=1\",\"expected\":\"Emits a Locked event upon successful locking\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Released event\\\"};duplicate=1\",\"expected\":\"Emits a Released event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is transferred from an older pool version during an upgrade.\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is transferred from an older pool version during an upgrade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enables smooth transition of liquidity and transactions\\\"};duplicate=1\",\"expected\":\"Enables smooth transition of liquidity and transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Establishes the initial whitelist\\\"};duplicate=1\",\"expected\":\"Establishes the initial whitelist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Facilitates pool upgrades by transferring liquidity from an older pool version:\\\"};duplicate=1\",\"expected\":\"Facilitates pool upgrades by transferring liquidity from an older pool version:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\\\"};duplicate=1\",\"expected\":\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection, adding support for ILiquidityContainer.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection, adding support for ILiquidityContainer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial list of authorized addresses\\\"};duplicate=1\",\"expected\":\"Initial list of authorized addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the token pool with its configuration parameters:\\\"};duplicate=1\",\"expected\":\"Initializes the token pool with its configuration parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the lock operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the lock operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the release operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the release operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Links to the RMN proxy and router\\\"};duplicate=1\",\"expected\":\"Links to the RMN proxy and router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Locks tokens in the pool for cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Locks tokens in the pool for cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=1\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=2\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only works if the pool accepts liquidity\\\"};duplicate=1\",\"expected\":\"Only works if the pool accepts liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token locking with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token locking with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token release with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token release with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\\\"};duplicate=1\",\"expected\":\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Releases tokens from the pool to a recipient.\\\"};duplicate=1\",\"expected\":\"Releases tokens from the pool to a recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes liquidity from the pool.\\\"};duplicate=1\",\"expected\":\"Removes liquidity from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires prior token approval\\\"};duplicate=1\",\"expected\":\"Requires prior token approval\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires sufficient pool balance\\\"};duplicate=1\",\"expected\":\"Requires sufficient pool balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires this pool to be set as rebalancer in the source pool\\\"};duplicate=1\",\"expected\":\"Requires this pool to be set as rebalancer in the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rebalancer address.\\\"};duplicate=1\",\"expected\":\"Returns the current rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\\\"};duplicate=1\",\"expected\":\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the liquidity acceptance policy\\\"};duplicate=1\",\"expected\":\"Sets the liquidity acceptance policy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the token contract reference\\\"};duplicate=1\",\"expected\":\"Sets up the token contract reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports both atomic and gradual migration strategies\\\"};duplicate=1\",\"expected\":\"Supports both atomic and gradual migration strategies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\\\"};duplicate=1\",\"expected\":\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the source pool\\\"};duplicate=1\",\"expected\":\"The address of the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to provide\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to provide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to transfer\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity transferred\\\"};duplicate=1\",\"expected\":\"The amount of liquidity transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current liquidity manager address\\\"};duplicate=1\",\"expected\":\"The current liquidity manager address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimal precision for the local token\\\"};duplicate=1\",\"expected\":\"The decimal precision for the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\\\\\"wrapped\\\\\\\" token) on all remote chains) is maintained\\\"};duplicate=1\",\"expected\":\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\"wrapped\\\" token) on all remote chains) is maintained\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new rebalancer address to set\\\"};duplicate=1\",\"expected\":\"The new rebalancer address to set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address\\\"};duplicate=1\",\"expected\":\"The source pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to manage\\\"};duplicate=1\",\"expected\":\"The token contract to manage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There is one canonical token on the chain\\\"};duplicate=1\",\"expected\":\"There is one canonical token on the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to withdraw more liquidity than available in the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to withdraw more liquidity than available in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers liquidity from an older pool version.\\\"};duplicate=1\",\"expected\":\"Transfers liquidity from an older pool version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens directly to the caller\\\"};duplicate=1\",\"expected\":\"Transfers tokens directly to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Transfers tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"True if the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rebalancer address.\\\"};duplicate=1\",\"expected\":\"Updates the rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"Whether the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"acceptLiquidity\\\"};duplicate=1\",\"expected\":\"acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rebalancer\\\"};duplicate=1\",\"expected\":\"rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_owner;\\\"};duplicate=1\",\"expected\":\"address private s_owner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_pendingOwner;\\\"};duplicate=1\",\"expected\":\"address private s_pendingOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address newOwner, address pendingOwner);\\\"};duplicate=1\",\"expected\":\"constructor(address newOwner, address pendingOwner);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CannotTransferToSelf();\\\"};duplicate=1\",\"expected\":\"error CannotTransferToSelf();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MustBeProposedOwner();\\\"};duplicate=1\",\"expected\":\"error MustBeProposedOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OwnerCannotBeZero();\\\"};duplicate=1\",\"expected\":\"error OwnerCannotBeZero();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event OwnershipTransferred(address indexed from, address indexed to);\\\"};duplicate=1\",\"expected\":\"event OwnershipTransferred(address indexed from, address indexed to);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function acceptOwnership() external override;\\\"};duplicate=1\",\"expected\":\"function acceptOwnership() external override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function owner() public view override returns (address);\\\"};duplicate=1\",\"expected\":\"function owner() public view override returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferOwnership(address to) public override onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferOwnership(address to) public override onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"modifier onlyOwner();\\\"};duplicate=1\",\"expected\":\"modifier onlyOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CannotTransferToSelf\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CannotTransferToSelf\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MustBeProposedOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MustBeProposedOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnerCannotBeZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnerCannotBeZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnershipTransferred\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnershipTransferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"acceptOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"acceptOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"onlyOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"onlyOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_pendingOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an owner to begin transferring ownership to a new address.\\\"};duplicate=1\",\"expected\":\"Allows an owner to begin transferring ownership to a new address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an ownership transfer to be completed by the recipient.\\\"};duplicate=1\",\"expected\":\"Allows an ownership transfer to be completed by the recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CannotTransferToSelf if attempting to transfer to current owner\\\"};duplicate=1\",\"expected\":\"CannotTransferToSelf if attempting to transfer to current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clears pending owner\\\"};duplicate=1\",\"expected\":\"Clears pending owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current owner initiating the transfer\\\"};duplicate=1\",\"expected\":\"Current owner initiating the transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits OwnershipTransferred event\\\"};duplicate=1\",\"expected\":\"Emits OwnershipTransferred event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an ownership transfer is completed.\\\"};duplicate=1\",\"expected\":\"Emitted when an ownership transfer is completed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the current owner initiates an ownership transfer.\\\"};duplicate=1\",\"expected\":\"Emitted when the current owner initiates an ownership transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\\\"};duplicate=1\",\"expected\":\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with an owner and optionally a pending owner.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with an owner and optionally a pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Modifier that restricts function access to the contract owner.\\\"};duplicate=1\",\"expected\":\"Modifier that restricts function access to the contract owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"New owner\\\"};duplicate=1\",\"expected\":\"New owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnlyCallableByOwner if caller is not the current owner\\\"};duplicate=1\",\"expected\":\"OnlyCallableByOwner if caller is not the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional address to initiate ownership transfer to\\\"};duplicate=1\",\"expected\":\"Optional address to initiate ownership transfer to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous owner\\\"};duplicate=1\",\"expected\":\"Previous owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposed new owner\\\"};duplicate=1\",\"expected\":\"Proposed new owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current owner's address.\\\"};duplicate=1\",\"expected\":\"Returns the current owner's address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with MustBeProposedOwner if caller is not the pending owner.\\\"};duplicate=1\",\"expected\":\"Reverts with MustBeProposedOwner if caller is not the pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OwnerCannotBeZero if newOwner is address(0)\\\"};duplicate=1\",\"expected\":\"Reverts with OwnerCannotBeZero if newOwner is address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets newOwner as the initial owner\\\"};duplicate=1\",\"expected\":\"Sets newOwner as the initial owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current owner\\\"};duplicate=1\",\"expected\":\"The address of the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The initial owner of the contract\\\"};duplicate=1\",\"expected\":\"The initial owner of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\\\"};duplicate=1\",\"expected\":\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the current owner of the contract.\\\"};duplicate=1\",\"expected\":\"The owner is the current owner of the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\\\"};duplicate=1\",\"expected\":\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pending owner is the address to which ownership may be transferred.\\\"};duplicate=1\",\"expected\":\"The pending owner is the address to which ownership may be transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by someone other than the owner.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by someone other than the owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set the owner to address(0).\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set the owner to address(0).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to transfer ownership to the current owner.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to transfer ownership to the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when someone other than the pending owner tries to accept ownership.\\\"};duplicate=1\",\"expected\":\"Thrown when someone other than the pending owner tries to accept ownership.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates owner to the caller\\\"};duplicate=1\",\"expected\":\"Updates owner to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When successful:\\\"};duplicate=1\",\"expected\":\"When successful:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=2\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newOwner\\\"};duplicate=1\",\"expected\":\"newOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pendingOwner\\\"};duplicate=1\",\"expected\":\"pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=2\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/ownable-2-step-msg-sender\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\\\"};duplicate=1\",\"expected\":\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\\\"};duplicate=1\",\"expected\":\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error BucketOverfilled();\\\"};duplicate=1\",\"expected\":\"error BucketOverfilled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DisabledNonZeroRateLimit(Config config);\\\"};duplicate=1\",\"expected\":\"error DisabledNonZeroRateLimit(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRateLimitRate(Config rateLimiterConfig);\\\"};duplicate=1\",\"expected\":\"error InvalidRateLimitRate(Config rateLimiterConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByAdminOrOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByAdminOrOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error RateLimitMustBeDisabled();\\\"};duplicate=1\",\"expected\":\"error RateLimitMustBeDisabled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event ConfigChanged(Config config);\\\"};duplicate=1\",\"expected\":\"event ConfigChanged(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\\\"};duplicate=1\",\"expected\":\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\\\"};duplicate=1\",\"expected\":\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BucketOverfilled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"BucketOverfilled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ConfigChanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Config\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRateLimitRate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByAdminOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByAdminOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenBucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateRefill\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateRefill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consume\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_currentTokenBucketState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_min\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_min\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"url\\\":\\\"#configchanged\\\"};duplicate=1\",\"expected\":\"ConfigChanged -> #configchanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=1\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=2\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=3\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=4\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=5\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=6\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=7\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"url\\\":\\\"#disablednonzeroratelimit\\\"};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit -> #disablednonzeroratelimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"url\\\":\\\"#invalidratelimitrate\\\"};duplicate=1\",\"expected\":\"InvalidRateLimitRate -> #invalidratelimitrate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"url\\\":\\\"#ratelimitmustbedisabled\\\"};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled -> #ratelimitmustbedisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=1\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=2\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=3\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=4\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=5\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=6\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=7\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=8\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=9\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"url\\\":\\\"#tokenmaxcapacityexceeded\\\"};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded -> #tokenmaxcapacityexceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"url\\\":\\\"#tokenratelimitreached\\\"};duplicate=1\",\"expected\":\"TokenRateLimitReached -> #tokenratelimitreached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokensConsumed\\\",\\\"url\\\":\\\"#tokensconsumed\\\"};duplicate=1\",\"expected\":\"TokensConsumed -> #tokensconsumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"url\\\":\\\"#_currenttokenbucketstate\\\"};duplicate=1\",\"expected\":\"_currentTokenBucketState -> #_currenttokenbucketstate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=1\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=2\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or\\\"};duplicate=1\",\"expected\":\", or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adjusts token amount to respect new capacity\\\"};duplicate=1\",\"expected\":\"Adjusts token amount to respect new capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically refills tokens based on elapsed time\\\"};duplicate=1\",\"expected\":\"Automatically refills tokens based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the number of tokens to add during a refill operation.\\\"};duplicate=1\",\"expected\":\"Calculates the number of tokens to add during a refill operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates token refill based on elapsed time\\\"};duplicate=1\",\"expected\":\"Calculates token refill based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes tokens to add based on elapsed time and rate\\\"};duplicate=1\",\"expected\":\"Computes tokens to add based on elapsed time and rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration parameters for the rate limiter.\\\"};duplicate=1\",\"expected\":\"Configuration parameters for the rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration structure used to configure\\\"};duplicate=1\",\"expected\":\"Configuration structure used to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration update process:\\\"};duplicate=1\",\"expected\":\"Configuration update process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current token balance\\\"};duplicate=1\",\"expected\":\"Current token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rate limiter\\\"};duplicate=1\",\"expected\":\"Emitted when the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are successfully consumed from the\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are successfully consumed from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enforces capacity and rate limits\\\"};duplicate=1\",\"expected\":\"Enforces capacity and rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures result doesn't exceed bucket capacity\\\"};duplicate=1\",\"expected\":\"Ensures result doesn't exceed bucket capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First number\\\"};duplicate=1\",\"expected\":\"First number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For disabled configurations:\\\"};duplicate=1\",\"expected\":\"For disabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For enabled configurations:\\\"};duplicate=1\",\"expected\":\"For enabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key behaviors:\\\"};duplicate=1\",\"expected\":\"Key behaviors:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum token capacity\\\"};duplicate=1\",\"expected\":\"Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"May throw\\\"};duplicate=1\",\"expected\":\"May throw\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate and capacity must be zero\\\"};duplicate=1\",\"expected\":\"Rate and capacity must be zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate must be non-zero and less than capacity\\\"};duplicate=1\",\"expected\":\"Rate must be non-zero and less than capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refill calculation:\\\"};duplicate=1\",\"expected\":\"Refill calculation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\\\"};duplicate=1\",\"expected\":\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents the state and configuration of a token bucket rate limiter.\\\"};duplicate=1\",\"expected\":\"Represents the state and configuration of a token bucket rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the current state of a token bucket, including automatic refill calculations.\\\"};duplicate=1\",\"expected\":\"Retrieves the current state of a token bucket, including automatic refill calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state without modifying storage\\\"};duplicate=1\",\"expected\":\"Returns the current state without modifying storage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the new token balance\\\"};duplicate=1\",\"expected\":\"Returns the new token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the smaller of two numbers.\\\"};duplicate=1\",\"expected\":\"Returns the smaller of two numbers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Second number\\\"};duplicate=1\",\"expected\":\"Second number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Skips execution if rate limiting is disabled or requestTokens is zero\\\"};duplicate=1\",\"expected\":\"Skips execution if rate limiting is disabled or requestTokens is zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"State management structure:\\\"};duplicate=1\",\"expected\":\"State management structure:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The configuration to validate\\\"};duplicate=1\",\"expected\":\"The configuration to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current state of the token bucket\\\"};duplicate=1\",\"expected\":\"The current state of the token bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration applied\\\"};duplicate=1\",\"expected\":\"The new configuration applied\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration to apply\\\"};duplicate=1\",\"expected\":\"The new configuration to apply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token balance after refill\\\"};duplicate=1\",\"expected\":\"The new token balance after refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens consumed\\\"};duplicate=1\",\"expected\":\"The number of tokens consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to consume\\\"};duplicate=1\",\"expected\":\"The number of tokens to consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address (use address(0) for aggregate value capacity)\\\"};duplicate=1\",\"expected\":\"The token address (use address(0) for aggregate value capacity)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to configure\\\"};duplicate=1\",\"expected\":\"The token bucket to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to consume from\\\"};duplicate=1\",\"expected\":\"The token bucket to consume from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses the configuration parameters defined in\\\"};duplicate=1\",\"expected\":\"This struct uses the configuration parameters defined in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a disabled\\\"};duplicate=1\",\"expected\":\"Thrown when a disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by an unauthorized address.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by an unauthorized address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the rate limit\\\"};duplicate=1\",\"expected\":\"Thrown when the rate limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the\\\"};duplicate=1\",\"expected\":\"Thrown when the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time elapsed since last refill (in seconds)\\\"};duplicate=1\",\"expected\":\"Time elapsed since last refill (in seconds)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokens per second refill rate\\\"};duplicate=1\",\"expected\":\"Tokens per second refill rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket parameters (enabled state, capacity, rate)\\\"};duplicate=1\",\"expected\":\"Updates bucket parameters (enabled state, capacity, rate)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket state with current refill before applying changes\\\"};duplicate=1\",\"expected\":\"Updates bucket state with current refill before applying changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the bucket state to reflect the current block timestamp:\\\"};duplicate=1\",\"expected\":\"Updates the bucket state to reflect the current block timestamp:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the lastUpdated timestamp\\\"};duplicate=1\",\"expected\":\"Updates the lastUpdated timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rate limiter configuration.\\\"};duplicate=1\",\"expected\":\"Updates the rate limiter configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used internally by\\\"};duplicate=1\",\"expected\":\"Used internally by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Utility function for safe minimum value calculation.\\\"};duplicate=1\",\"expected\":\"Utility function for safe minimum value calculation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates against mustBeDisabled requirement\\\"};duplicate=1\",\"expected\":\"Validates against mustBeDisabled requirement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates rate limiter configuration parameters.\\\"};duplicate=1\",\"expected\":\"Validates rate limiter configuration parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validation rules:\\\"};duplicate=1\",\"expected\":\"Validation rules:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the configuration must be disabled\\\"};duplicate=1\",\"expected\":\"Whether the configuration must be disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"a\\\"};duplicate=1\",\"expected\":\"a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"b\\\"};duplicate=1\",\"expected\":\"b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=1\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=2\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity\\\"};duplicate=1\",\"expected\":\"capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=1\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=2\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=3\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contains more tokens than its capacity.\\\"};duplicate=1\",\"expected\":\"contains more tokens than its capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event for non-zero consumption\\\"};duplicate=1\",\"expected\":\"event for non-zero consumption\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"has non-zero rate or capacity values.\\\"};duplicate=1\",\"expected\":\"has non-zero rate or capacity values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid (rate is zero or exceeds capacity).\\\"};duplicate=1\",\"expected\":\"is invalid (rate is zero or exceeds capacity).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is updated.\\\"};duplicate=1\",\"expected\":\"is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Activation state of the rate limiter\\\"};duplicate=1\",\"expected\":\"isEnabled: Activation state of the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Whether rate limiting is active\\\"};duplicate=1\",\"expected\":\"isEnabled: Whether rate limiting is active\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\\\"};duplicate=1\",\"expected\":\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"mustBeDisabled\\\"};duplicate=1\",\"expected\":\"mustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on violations\\\"};duplicate=1\",\"expected\":\"on violations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Token refill rate per second\\\"};duplicate=1\",\"expected\":\"rate: Token refill rate per second\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Tokens added per second during refill\\\"};duplicate=1\",\"expected\":\"rate: Tokens added per second during refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate\\\"};duplicate=1\",\"expected\":\"rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requestTokens\\\"};duplicate=1\",\"expected\":\"requestTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=1\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=2\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timeDiff\\\"};duplicate=1\",\"expected\":\"timeDiff\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=1\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens: Current token balance in the bucket\\\"};duplicate=1\",\"expected\":\"tokens: Current token balance in the bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address tokenAdminRegistry);\\\"};duplicate=1\",\"expected\":\"constructor(address tokenAdminRegistry);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _registerAdmin(address token, address admin) internal;\\\"};duplicate=1\",\"expected\":\"function _registerAdmin(address token, address admin) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAccessControlDefaultAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAccessControlDefaultAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaGetCCIPAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaGetCCIPAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaOwner(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaOwner(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_registerAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_registerAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAccessControlDefaultAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAccessControlDefaultAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaGetCCIPAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaGetCCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"url\\\":\\\"#addresszero\\\"};duplicate=1\",\"expected\":\"AddressZero -> #addresszero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=1\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=2\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=1\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=2\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RequiredRoleNotFound\\\",\\\"url\\\":\\\"#requiredrolenotfound\\\"};duplicate=1\",\"expected\":\"RequiredRoleNotFound -> #requiredrolenotfound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenAdminRegistry\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/token-admin-registry\\\"};duplicate=1\",\"expected\":\"TokenAdminRegistry -> /ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=2\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's getCCIPAdmin method\\\"};duplicate=1\",\"expected\":\"Calls token's getCCIPAdmin method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's owner method\\\"};duplicate=1\",\"expected\":\"Calls token's owner method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core registration logic:\\\"};duplicate=1\",\"expected\":\"Core registration logic:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with a reference to the\\\"};duplicate=1\",\"expected\":\"Initializes the contract with a reference to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to handle administrator registration.\\\"};duplicate=1\",\"expected\":\"Internal function to handle administrator registration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=1\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=2\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes administrator to registry\\\"};duplicate=1\",\"expected\":\"Proposes administrator to registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the getCCIPAdmin method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the getCCIPAdmin method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the owner method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the owner method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the immutable registry reference\\\"};duplicate=1\",\"expected\":\"Sets up the immutable registry reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the TokenAdminRegistry contract\\\"};duplicate=1\",\"expected\":\"The address of the TokenAdminRegistry contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=1\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=2\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using AccessControl:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using AccessControl:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using getCCIPAdmin:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using getCCIPAdmin:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using owner pattern:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using owner pattern:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates caller is the admin (reverts with\\\"};duplicate=1\",\"expected\":\"Validates caller is the admin (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the tokenAdminRegistry address is not zero (reverts with\\\"};duplicate=1\",\"expected\":\"Validates the tokenAdminRegistry address is not zero (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\\\"};duplicate=1\",\"expected\":\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"admin\\\"};duplicate=1\",\"expected\":\"admin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=1\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=2\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAdminRegistry\\\"};duplicate=1\",\"expected\":\"tokenAdminRegistry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AlreadyRegistered(address token);\\\"};duplicate=1\",\"expected\":\"error AlreadyRegistered(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenPoolToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidTokenPoolToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyPendingAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyPendingAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyRegistryModuleOrOwner(address sender);\\\"};duplicate=1\",\"expected\":\"error OnlyRegistryModuleOrOwner(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddress();\\\"};duplicate=1\",\"expected\":\"error ZeroAddress();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\\\"};duplicate=1\",\"expected\":\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleAdded(address module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleAdded(address module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleRemoved(address indexed module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleRemoved(address indexed module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\\\"};duplicate=1\",\"expected\":\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AddressZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AlreadyRegistered\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AlreadyRegistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenPoolToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenPoolToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyPendingAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyPendingAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyRegistryModuleOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyRegistryModuleOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=1\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setPool\\\",\\\"url\\\":\\\"#setpool\\\"};duplicate=1\",\"expected\":\"setPool -> #setpool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data structure for each token.\\\"};duplicate=1\",\"expected\":\"Configuration data structure for each token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new registry module is authorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a new registry module is authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is deauthorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is deauthorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token's pool configuration is changed via\\\"};duplicate=1\",\"expected\":\"Emitted when a token's pool configuration is changed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is completed via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator transfer is completed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=3\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=4\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of all configured tokens for efficient enumeration.\\\"};duplicate=1\",\"expected\":\"Set of all configured tokens for efficient enumeration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized registry modules that can register administrators.\\\"};duplicate=1\",\"expected\":\"Set of authorized registry modules that can register administrators.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores configuration data for each token, including administrators and pool addresses.\\\"};duplicate=1\",\"expected\":\"Stores configuration data for each token, including administrators and pool addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the newly authorized module\\\"};duplicate=1\",\"expected\":\"The address of the newly authorized module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the removed module\\\"};duplicate=1\",\"expected\":\"The address of the removed module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new administrator address\\\"};duplicate=1\",\"expected\":\"The new administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new pool address\\\"};duplicate=1\",\"expected\":\"The new pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The previous pool address\\\"};duplicate=1\",\"expected\":\"The previous pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=1\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=2\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being configured\\\"};duplicate=1\",\"expected\":\"The token address being configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that already has an administrator\\\"};duplicate=1\",\"expected\":\"The token address that already has an administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that is not supported by the pool\\\"};duplicate=1\",\"expected\":\"The token address that is not supported by the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role has been transferred\\\"};duplicate=1\",\"expected\":\"The token contract whose admin role has been transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=1\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=2\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=3\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to registry modules or owner is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to registry modules or owner is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to the token administrator is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to the token administrator is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\\\"};duplicate=1\",\"expected\":\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to register an administrator for a token that already has one.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to register an administrator for a token that already has one.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set a pool that doesn't support the token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set a pool that doesn't support the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) where not allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) where not allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=6\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=12\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=13\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=14\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=1\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=2\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=1\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newPool\\\"};duplicate=1\",\"expected\":\"newPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"previousPool\\\"};duplicate=1\",\"expected\":\"previousPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=4\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=5\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=6\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.AddressSet internal s_allowlist;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.AddressSet internal s_allowlist;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.UintSet internal s_remoteChainSelectors;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.UintSet internal s_remoteChainSelectors;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IERC20 internal immutable i_token;\\\"};duplicate=1\",\"expected\":\"IERC20 internal immutable i_token;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IRouter internal s_router;\\\"};duplicate=1\",\"expected\":\"IRouter internal s_router;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal immutable i_rmnProxy;\\\"};duplicate=1\",\"expected\":\"address internal immutable i_rmnProxy;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rateLimitAdmin;\\\"};duplicate=1\",\"expected\":\"address internal s_rateLimitAdmin;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_allowlistEnabled;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_allowlistEnabled;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\\\"};duplicate=1\",\"expected\":\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CallerIsNotARampOnRouter(address caller);\\\"};duplicate=1\",\"expected\":\"error CallerIsNotARampOnRouter(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainAlreadyExists(uint64 chainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainAlreadyExists(uint64 chainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainNotAllowed(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainNotAllowed(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CursedByRMN();\\\"};duplicate=1\",\"expected\":\"error CursedByRMN();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\\\"};duplicate=1\",\"expected\":\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\\\"};duplicate=1\",\"expected\":\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MismatchedArrayLengths();\\\"};duplicate=1\",\"expected\":\"error MismatchedArrayLengths();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error NonExistentChain(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error NonExistentChain(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\\\"};duplicate=1\",\"expected\":\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error SenderNotAllowed(address sender);\\\"};duplicate=1\",\"expected\":\"error SenderNotAllowed(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error Unauthorized(address caller);\\\"};duplicate=1\",\"expected\":\"error Unauthorized(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddressNotAllowed();\\\"};duplicate=1\",\"expected\":\"error ZeroAddressNotAllowed();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\\\"};duplicate=1\",\"expected\":\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _checkAllowList(address sender) internal view;\\\"};duplicate=1\",\"expected\":\"function _checkAllowList(address sender) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\\\"};duplicate=1\",\"expected\":\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\\\"};duplicate=1\",\"expected\":\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowList() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getAllowList() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowListEnabled() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function getAllowListEnabled() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRateLimitAdmin() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRateLimitAdmin() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\\\"};duplicate=1\",\"expected\":\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRmnProxy() public view returns (address rmnProxy);\\\"};duplicate=1\",\"expected\":\"function getRmnProxy() public view returns (address rmnProxy);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRouter() public view returns (address router);\\\"};duplicate=1\",\"expected\":\"function getRouter() public view returns (address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getSupportedChains() public view returns (uint64[] memory);\\\"};duplicate=1\",\"expected\":\"function getSupportedChains() public view returns (uint64[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getToken() public view returns (IERC20 token);\\\"};duplicate=1\",\"expected\":\"function getToken() public view returns (IERC20 token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenDecimals() public view virtual returns (uint8 decimals);\\\"};duplicate=1\",\"expected\":\"function getTokenDecimals() public view virtual returns (uint8 decimals);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedToken(address token) public view virtual returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedToken(address token) public view virtual returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRouter(address newRouter) public onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRouter(address newRouter) public onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\\\"};duplicate=1\",\"expected\":\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\\\"};duplicate=1\",\"expected\":\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\\\"};duplicate=1\",\"expected\":\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 internal immutable i_tokenDecimals;\\\"};duplicate=1\",\"expected\":\"uint8 internal immutable i_tokenDecimals;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainAlreadyExists\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainAlreadyExists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CursedByRMN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CursedByRMN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDecimalArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDecimalArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSourcePoolAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MismatchedArrayLengths\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MismatchedArrayLengths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"NonExistentChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OverflowDetected\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OverflowDetected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolAlreadyAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Rate Limiting\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Rate Limiting\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RemoteChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RemoteChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SenderNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Unauthorized\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Unauthorized\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateLocalAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateLocalAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_checkAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_checkAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeInboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeInboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeOutboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeOutboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_encodeLocalDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_encodeLocalDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOffRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOffRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOnRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_parseRemoteDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_parseRemoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRateLimitConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRateLimitConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateLockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateReleaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"addRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"addRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyChainUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyChainUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowListEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowListEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentInboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentInboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentOutboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentOutboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemotePools\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemotePools\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemoteToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemoteToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getSupportedChains\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getSupportedChains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_allowlistEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_allowlistEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_rmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_tokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_tokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_token\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"removeRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"removeRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_allowlist\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainSelectors\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remotePoolAddresses\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remotePoolAddresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_router\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=2\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainConfigured\\\",\\\"url\\\":\\\"#chainconfigured\\\"};duplicate=1\",\"expected\":\"ChainConfigured -> #chainconfigured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=1\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=2\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"url\\\":\\\"#invalidremotechaindecimals\\\"};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals -> #invalidremotechaindecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"url\\\":\\\"#invalidremotepoolforchain\\\"};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain -> #invalidremotepoolforchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"url\\\":\\\"#nonexistentchain\\\"};duplicate=1\",\"expected\":\"NonExistentChain -> #nonexistentchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"url\\\":\\\"#poolalreadyadded\\\"};duplicate=1\",\"expected\":\"PoolAlreadyAdded -> #poolalreadyadded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.5.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.5.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.5.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.5.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/rate-limiter#tokenbucket\\\"};duplicate=1\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.5.1/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.5.1/rate-limiter#tokenbucket\\\"};duplicate=2\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.5.1/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolAdded\\\",\\\"url\\\":\\\"#remotepooladded\\\"};duplicate=1\",\"expected\":\"RemotePoolAdded -> #remotepooladded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolRemoved\\\",\\\"url\\\":\\\"#remotepoolremoved\\\"};duplicate=1\",\"expected\":\"RemotePoolRemoved -> #remotepoolremoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RouterUpdated\\\",\\\"url\\\":\\\"#routerupdated\\\"};duplicate=1\",\"expected\":\"RouterUpdated -> #routerupdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"url\\\":\\\"#sendernotallowed\\\"};duplicate=1\",\"expected\":\"SenderNotAllowed -> #sendernotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"url\\\":\\\"#zeroaddressnotallowed\\\"};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed -> #zeroaddressnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=1\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=2\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=3\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI-encoded decimal places of the local token\\\"};duplicate=1\",\"expected\":\"ABI-encoded decimal places of the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adding new chains with rate limits\\\"};duplicate=1\",\"expected\":\"Adding new chains with rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new pool address for a remote chain.\\\"};duplicate=1\",\"expected\":\"Adds a new pool address for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListAdd for each successfully added address\\\"};duplicate=1\",\"expected\":\"AllowListAdd for each successfully added address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListRemove for each successfully removed address\\\"};duplicate=1\",\"expected\":\"AllowListRemove for each successfully removed address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlist is enabled\\\"};duplicate=1\",\"expected\":\"Allowlist is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows multiple pools per chain for upgrades\\\"};duplicate=1\",\"expected\":\"Allows multiple pools per chain for upgrades\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows:\\\"};duplicate=1\",\"expected\":\"Allows:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apply updates to the allow list.\\\"};duplicate=1\",\"expected\":\"Apply updates to the allow list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to add to the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to add to the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to remove from the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to remove from the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of configured chain selectors\\\"};duplicate=1\",\"expected\":\"Array of configured chain selectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of encoded pool addresses on remote chain\\\"};duplicate=1\",\"expected\":\"Array of encoded pool addresses on remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP_POOL_V1\\\"};duplicate=1\",\"expected\":\"CCIP_POOL_V1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the local amount based on the remote amount and decimals.\\\"};duplicate=1\",\"expected\":\"Calculates the local amount based on the remote amount and decimals.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Callable by owner or rate limit admin. All array lengths must match.\\\"};duplicate=1\",\"expected\":\"Callable by owner or rate limit admin. All array lengths must match.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized offRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized onRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is registered as an offRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is registered as an offRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is the designated onRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is the designated onRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=1\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=2\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=1\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=2\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a chain is configured in the pool.\\\"};duplicate=1\",\"expected\":\"Checks if a chain is configured in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a given token is supported by this pool.\\\"};duplicate=1\",\"expected\":\"Checks if a given token is supported by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data for adding or updating a chain.\\\"};duplicate=1\",\"expected\":\"Configuration data for adding or updating a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration for each remote chain, including rate limits and token details.\\\"};duplicate=1\",\"expected\":\"Configuration for each remote chain, including rate limits and token details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=1\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=2\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the inbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the inbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the outbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the outbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data length is not 32 bytes (invalid ABI encoding)\\\"};duplicate=1\",\"expected\":\"Data length is not 32 bytes (invalid ABI encoding)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decoded value exceeds uint8 range\\\"};duplicate=1\",\"expected\":\"Decoded value exceeds uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=27\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=28\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=29\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=30\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=31\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=32\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=33\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=34\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=35\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=36\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=37\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=38\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=39\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=40\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=41\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=42\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=43\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=44\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=45\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=46\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits:\\\"};duplicate=1\",\"expected\":\"Emits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=3\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensure no inflight transactions exist before removal to prevent loss of funds.\\\"};duplicate=1\",\"expected\":\"Ensure no inflight transactions exist before removal to prevent loss of funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expects the data to be ABI-encoded uint256 that fits in uint8\\\"};duplicate=1\",\"expected\":\"Expects the data to be ABI-encoded uint256 that fits in uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\\\"};duplicate=1\",\"expected\":\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=1\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=2\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flag indicating if the pool uses access control.\\\"};duplicate=1\",\"expected\":\"Flag indicating if the pool uses access control.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the allowed addresses.\\\"};duplicate=1\",\"expected\":\"Gets the allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC165\\\"};duplicate=1\",\"expected\":\"IERC165\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=2\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IPoolV1\\\"};duplicate=1\",\"expected\":\"IPoolV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\\\"};duplicate=1\",\"expected\":\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is enabled, verifies sender is in s_allowlist\\\"};duplicate=1\",\"expected\":\"If allowlist is enabled, verifies sender is in s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial set of authorized addresses (if any)\\\"};duplicate=1\",\"expected\":\"Initial set of authorized addresses (if any)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes allowlist if provided\\\"};duplicate=1\",\"expected\":\"Initializes allowlist if provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal configuration for a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal configuration for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\\\"};duplicate=1\",\"expected\":\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for incoming transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for incoming transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for outgoing transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for outgoing transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to decode the decimal configuration received from a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal function to decode the decimal configuration received from a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to encode the local token's decimals for cross-chain communication.\\\"};duplicate=1\",\"expected\":\"Internal function to encode the local token's decimals for cross-chain communication.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to update rate limit configuration for a chain.\\\"};duplicate=1\",\"expected\":\"Internal function to update rate limit configuration for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate lock or burn operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate lock or burn operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate release or mint operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate release or mint operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to verify if a sender is authorized when allowlist is enabled.\\\"};duplicate=1\",\"expected\":\"Internal function to verify if a sender is authorized when allowlist is enabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\\\"};duplicate=1\",\"expected\":\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maps hashed pool addresses to their original form for verification.\\\"};duplicate=1\",\"expected\":\"Maps hashed pool addresses to their original form for verification.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=33\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=34\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=27\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=28\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=29\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=30\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=31\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\\\"};duplicate=1\",\"expected\":\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\\\"};duplicate=1\",\"expected\":\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner\\\"};duplicate=1\",\"expected\":\"Only callable by owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the contract owner. Emits\\\"};duplicate=1\",\"expected\":\"Only callable by the contract owner. Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=20\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=21\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=22\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=23\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=24\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=25\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=26\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=27\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=28\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs access control validation based on the i_allowlistEnabled flag:\\\"};duplicate=1\",\"expected\":\"Performs access control validation based on the i_allowlistEnabled flag:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs initial setup:\\\"};duplicate=1\",\"expected\":\"Performs initial setup:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous pools remain valid for inflight messages\\\"};duplicate=1\",\"expected\":\"Previous pools remain valid for inflight messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=1\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=2\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for incoming transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for incoming transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for outgoing transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for outgoing transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=1\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=2\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=1\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=2\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=1\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=2\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a pool address from a remote chain's configuration.\\\"};duplicate=1\",\"expected\":\"Removes a pool address from a remote chain's configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removing existing chains\\\"};duplicate=1\",\"expected\":\"Removing existing chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=1\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=2\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all configured chain selectors.\\\"};duplicate=1\",\"expected\":\"Returns all configured chain selectors.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded address to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded address to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded addresses to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded addresses to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the Risk Management Network proxy address.\\\"};duplicate=1\",\"expected\":\"Returns the Risk Management Network proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the configured pool addresses for a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the configured pool addresses for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rate limit administrator address.\\\"};duplicate=1\",\"expected\":\"Returns the current rate limit administrator address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current router address.\\\"};duplicate=1\",\"expected\":\"Returns the current router address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of inbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of inbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of outbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of outbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"Returns the number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token address on a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the token address on a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token managed by this pool.\\\"};duplicate=1\",\"expected\":\"Returns the token managed by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns whether allowlist functionality is active.\\\"};duplicate=1\",\"expected\":\"Returns whether allowlist functionality is active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=10\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=11\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=12\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=13\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=14\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=15\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=16\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=17\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=18\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=7\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=8\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=9\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=1\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=2\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=2\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=3\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=4\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=2\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is allowlisted (if enabled)\\\"};duplicate=1\",\"expected\":\"Sender is allowlisted (if enabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is not in the allowlist\\\"};duplicate=1\",\"expected\":\"Sender is not in the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of addresses authorized to initiate cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of addresses authorized to initiate cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized chain selectors for cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of authorized chain selectors for cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"Sets the address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the chain rate limiter config.\\\"};duplicate=1\",\"expected\":\"Sets the chain rate limiter config.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up immutable contract references\\\"};duplicate=1\",\"expected\":\"Sets up immutable contract references\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool is valid\\\"};duplicate=1\",\"expected\":\"Source pool is valid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports the following interfaces:\\\"};duplicate=1\",\"expected\":\"Supports the following interfaces:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address.\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The RMN proxy contract address\\\"};duplicate=1\",\"expected\":\"The RMN proxy contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network (RMN) proxy address.\\\"};duplicate=1\",\"expected\":\"The Risk Management Network (RMN) proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network proxy address\\\"};duplicate=1\",\"expected\":\"The Risk Management Network proxy address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual number of decimals provided\\\"};duplicate=1\",\"expected\":\"The actual number of decimals provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"The address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the already existing pool\\\"};duplicate=1\",\"expected\":\"The address of the already existing pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the invalid token\\\"};duplicate=1\",\"expected\":\"The address of the invalid token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the pool to remove\\\"};duplicate=1\",\"expected\":\"The address of the pool to remove\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the remote pool (encoded to support non-EVM chains)\\\"};duplicate=1\",\"expected\":\"The address of the remote pool (encoded to support non-EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address that attempted the action\\\"};duplicate=1\",\"expected\":\"The address that attempted the action\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to check for permission\\\"};duplicate=1\",\"expected\":\"The address to check for permission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be added.\\\"};duplicate=1\",\"expected\":\"The addresses to be added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be removed.\\\"};duplicate=1\",\"expected\":\"The addresses to be removed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The allowed addresses.\\\"};duplicate=1\",\"expected\":\"The allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=1\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=2\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount on the remote chain.\\\"};duplicate=1\",\"expected\":\"The amount on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount that caused the overflow\\\"};duplicate=1\",\"expected\":\"The amount that caused the overflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector being queried\\\"};duplicate=1\",\"expected\":\"The chain selector being queried\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the destination chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the source chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to add the pool for\\\"};duplicate=1\",\"expected\":\"The chain selector to add the pool for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to configure\\\"};duplicate=1\",\"expected\":\"The chain selector to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=1\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=2\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to remove the pool from\\\"};duplicate=1\",\"expected\":\"The chain selector to remove the pool from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=1\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=2\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector where the pool exists\\\"};duplicate=1\",\"expected\":\"The chain selector where the pool exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selectors to configure\\\"};duplicate=1\",\"expected\":\"The chain selectors to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals of the token on the remote chain.\\\"};duplicate=1\",\"expected\":\"The decimals of the token on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the local chain\\\"};duplicate=1\",\"expected\":\"The decimals on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the remote chain\\\"};duplicate=1\",\"expected\":\"The decimals on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded decimal configuration data\\\"};duplicate=1\",\"expected\":\"The encoded decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded token address on the remote chain\\\"};duplicate=1\",\"expected\":\"The encoded token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of decimals\\\"};duplicate=1\",\"expected\":\"The expected number of decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid decimal configuration data\\\"};duplicate=1\",\"expected\":\"The invalid decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid pool address\\\"};duplicate=1\",\"expected\":\"The invalid pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The local amount.\\\"};duplicate=1\",\"expected\":\"The local amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new router contract address\\\"};duplicate=1\",\"expected\":\"The new router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimal places for the token\\\"};duplicate=1\",\"expected\":\"The number of decimal places for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"The number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used on the remote chain\\\"};duplicate=1\",\"expected\":\"The number of decimals used on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\\\"};duplicate=1\",\"expected\":\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address to verify\\\"};duplicate=1\",\"expected\":\"The pool address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=1\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=2\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=3\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain selector for which the rate limits apply.\\\"};duplicate=1\",\"expected\":\"The remote chain selector for which the rate limits apply.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The selector of the chain that already exists\\\"};duplicate=1\",\"expected\":\"The selector of the chain that already exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address to check\\\"};duplicate=1\",\"expected\":\"The token address to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract address\\\"};duplicate=1\",\"expected\":\"The token contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token managed by this pool. Currently supports one token per pool.\\\"};duplicate=1\",\"expected\":\"The token managed by this pool. Currently supports one token per pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to be managed by this pool\\\"};duplicate=1\",\"expected\":\"The token to be managed by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token's decimal places on this chain\\\"};duplicate=1\",\"expected\":\"The token's decimal places on this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\\\"};duplicate=1\",\"expected\":\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a caller lacks the required permissions for an operation.\\\"};duplicate=1\",\"expected\":\"Thrown when a caller lacks the required permissions for an operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\\\"};duplicate=1\",\"expected\":\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a token amount conversion would result in an arithmetic overflow.\\\"};duplicate=1\",\"expected\":\"Thrown when a token amount conversion would result in an arithmetic overflow.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\\\"};duplicate=1\",\"expected\":\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when array parameters have different lengths in multi-chain operations.\\\"};duplicate=1\",\"expected\":\"Thrown when array parameters have different lengths in multi-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a chain that is already configured.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a chain that is already configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a pool that is already configured for a chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a pool that is already configured for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to modify the allowlist when the feature is disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to modify the allowlist when the feature is disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with a token that is not supported by the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with a token that is not supported by the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with an unconfigured chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with an unconfigured chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use a chain that is not authorized.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use a chain that is not authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) for critical contract addresses.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) for critical contract addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unconfigured or invalid remote pool address.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unconfigured or invalid remote pool address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the Risk Management Network has flagged operations as unsafe.\\\"};duplicate=1\",\"expected\":\"Thrown when the Risk Management Network has flagged operations as unsafe.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when token decimals don't match the expected configuration.\\\"};duplicate=1\",\"expected\":\"Thrown when token decimals don't match the expected configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=1\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=2\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the chain is configured in the pool\\\"};duplicate=1\",\"expected\":\"True if the chain is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the contract implements the interface\\\"};duplicate=1\",\"expected\":\"True if the contract implements the interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool is configured for the chain\\\"};duplicate=1\",\"expected\":\"True if the pool is configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the token is supported by this pool\\\"};duplicate=1\",\"expected\":\"True if the token is supported by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=27\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=28\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=29\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=30\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=31\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=32\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=33\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=34\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=35\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=36\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=37\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=38\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=39\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=40\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=41\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=42\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=43\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=44\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=45\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=46\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates both inbound and outbound rate limits\\\"};duplicate=1\",\"expected\":\"Updates both inbound and outbound rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates chain configurations in bulk.\\\"};duplicate=1\",\"expected\":\"Updates chain configurations in bulk.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates rate limit configurations for multiple chains.\\\"};duplicate=1\",\"expected\":\"Updates rate limit configurations for multiple chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\\\"};duplicate=1\",\"expected\":\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the router contract address.\\\"};duplicate=1\",\"expected\":\"Updates the router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=1\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=2\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updating chain configurations Only callable by owner.\\\"};duplicate=1\",\"expected\":\"Updating chain configurations Only callable by owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\\\"};duplicate=1\",\"expected\":\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=1\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=2\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates both rate limit configurations\\\"};duplicate=1\",\"expected\":\"Validates both rate limit configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=1\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=2\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates non-zero addresses for token, router, and RMN proxy\\\"};duplicate=1\",\"expected\":\"Validates non-zero addresses for token, router, and RMN proxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the chain exists\\\"};duplicate=1\",\"expected\":\"Validates that the chain exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the decoded value is within uint8 range\\\"};duplicate=1\",\"expected\":\"Validates that the decoded value is within uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=1\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=2\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies if a pool address is configured for a remote chain.\\\"};duplicate=1\",\"expected\":\"Verifies if a pool address is configured for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies token decimals match if ERC20Metadata is supported\\\"};duplicate=1\",\"expected\":\"Verifies token decimals match if ERC20Metadata is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actual\\\"};duplicate=1\",\"expected\":\"actual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=2\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=3\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=4\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=5\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=6\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=1\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=2\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=4\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=5\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=9\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"caller\\\"};duplicate=1\",\"expected\":\"caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=1\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event.\\\"};duplicate=1\",\"expected\":\"event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"expected\\\"};duplicate=1\",\"expected\":\"expected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not an authorized offRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not an authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not the authorized onRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not the authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=1\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=2\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=3\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool address is empty\\\"};duplicate=1\",\"expected\":\"if the pool address is empty\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is already configured for this chain\\\"};duplicate=1\",\"expected\":\"if the pool is already configured for this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is not configured for the chain\\\"};duplicate=1\",\"expected\":\"if the pool is not configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=1\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=2\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=1\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=2\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfigs\\\"};duplicate=1\",\"expected\":\"inboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localDecimals\\\"};duplicate=1\",\"expected\":\"localDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRouter\\\"};duplicate=1\",\"expected\":\"newRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=1\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=2\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfigs\\\"};duplicate=1\",\"expected\":\"outboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Active rate limiter for sending tokens\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Active rate limiter for sending tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=1\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=2\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector: Chain identifier\\\"};duplicate=1\",\"expected\":\"remoteChainSelector: Chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=1\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=10\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=11\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=12\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=13\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=14\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=15\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=2\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=3\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=4\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=5\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=6\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=7\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=8\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=9\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelectors\\\"};duplicate=1\",\"expected\":\"remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=1\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=2\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=1\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=2\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=3\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=4\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=5\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddresses: List of authorized pool addresses on the remote chain\\\"};duplicate=1\",\"expected\":\"remotePoolAddresses: List of authorized pool addresses on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePools: Set of authorized pool addresses (stored as hashes)\\\"};duplicate=1\",\"expected\":\"remotePools: Set of authorized pool addresses (stored as hashes)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=1\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=2\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=1\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=2\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=1\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=2\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true is enabled, false if not.\\\"};duplicate=1\",\"expected\":\"true is enabled, false if not.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=1\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=2\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=13\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=14\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=15\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=3\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=4\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=5\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=6\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when successful.\\\"};duplicate=1\",\"expected\":\"when successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when the pool is successfully added.\\\"};duplicate=1\",\"expected\":\"when the pool is successfully added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.5.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You are viewing API documentation for CCIP v1.6.0, which is the latest version.\\\"};duplicate=1\",\"expected\":\"You are viewing API documentation for CCIP v1.6.0, which is the latest version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _burn(uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _burn(uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_burn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier that specifies the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier that specifies the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\\\"};duplicate=1\",\"expected\":\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements the core burn functionality for the pool.\\\"};duplicate=1\",\"expected\":\"Implements the core burn functionality for the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that executes the token burning operation.\\\"};duplicate=1\",\"expected\":\"Internal function that executes the token burning operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the BurnFromMintTokenPool contract with initial configuration.\\\"};duplicate=1\",\"expected\":\"Sets up the BurnFromMintTokenPool contract with initial configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract identifier \\\\\\\"BurnFromMintTokenPool 1.5.1\\\\\\\"\\\"};duplicate=1\",\"expected\":\"The contract identifier \\\"BurnFromMintTokenPool 1.5.1\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The function can be overridden in derived contracts to implement different burning mechanisms while preserving the base logic.\\\"};duplicate=1\",\"expected\":\"The function can be overridden in derived contracts to implement different burning mechanisms while preserving the base logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The quantity of tokens to burn\\\"};duplicate=1\",\"expected\":\"The quantity of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-erc20\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event Minted(address indexed sender, address indexed recipient, uint256 amount);\\\"};duplicate=1\",\"expected\":\"event Minted(address indexed sender, address indexed recipient, uint256 amount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _burn(uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _burn(uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Minted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Minted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_burn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.6.0/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.6.0/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.6.0/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burns the specified amount of tokens\\\"};duplicate=1\",\"expected\":\"Burns the specified amount of tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burns tokens in the pool during a cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Burns tokens in the pool during a cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burns tokens in the pool with essential security validation:\\\"};duplicate=1\",\"expected\":\"Burns tokens in the pool with essential security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the correct local token amount using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates the correct local token amount using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the specific burn call for a pool.\\\"};duplicate=1\",\"expected\":\"Contains the specific burn call for a pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Burned event\\\"};duplicate=1\",\"expected\":\"Emits a Burned event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Minted event\\\"};duplicate=1\",\"expected\":\"Emits a Minted event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when new tokens are minted from the pool.\\\"};duplicate=1\",\"expected\":\"Emitted when new tokens are minted from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are burned in the pool.\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are burned in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the burn operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the burn operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the mint operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the mint operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that executes the token burning operation.\\\"};duplicate=1\",\"expected\":\"Internal function that executes the token burning operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mints new tokens to a recipient during a cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Mints new tokens to a recipient during a cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mints tokens to a specified recipient with the following steps:\\\"};duplicate=1\",\"expected\":\"Mints tokens to a specified recipient with the following steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mints tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Mints tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs security validation through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs security validation through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs security validation through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs security validation through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address initiating the burn operation\\\"};duplicate=1\",\"expected\":\"The address initiating the burn operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address initiating the mint operation\\\"};duplicate=1\",\"expected\":\"The address initiating the mint operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address receiving the minted tokens\\\"};duplicate=1\",\"expected\":\"The address receiving the minted tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens burned\\\"};duplicate=1\",\"expected\":\"The number of tokens burned\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens minted\\\"};duplicate=1\",\"expected\":\"The number of tokens minted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to burn\\\"};duplicate=1\",\"expected\":\"The number of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This method can be overridden to create pools with different burn signatures without duplicating the underlying logic.\\\"};duplicate=1\",\"expected\":\"This method can be overridden to create pools with different burn signatures without duplicating the underlying logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"recipient\\\"};duplicate=1\",\"expected\":\"recipient\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_ccipReceive\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the contract implements specific interfaces.\\\"};duplicate=1\",\"expected\":\"Determines whether the contract implements specific interfaces.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns false or reverts: only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If returns false or reverts: only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns true: tokens are transferred and ccipReceive is called atomically\\\"};duplicate=1\",\"expected\":\"If returns true: tokens are transferred and ccipReceive is called atomically\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection with CCIP-specific behavior:\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection with CCIP-specific behavior:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to be implemented by derived contracts for custom message handling.\\\"};duplicate=1\",\"expected\":\"Internal function to be implemented by derived contracts for custom message handling.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides access to the immutable router address used for message validation.\\\"};duplicate=1\",\"expected\":\"Provides access to the immutable router address used for message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\\\"};duplicate=1\",\"expected\":\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current CCIP router address\\\"};duplicate=1\",\"expected\":\"The current CCIP router address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used by CCIP to check if ccipReceive is available\\\"};duplicate=1\",\"expected\":\"Used by CCIP to check if ccipReceive is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\\\"};duplicate=1\",\"expected\":\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVMTokenAmount { address token; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct EVMTokenAmount { address token; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\\\"};duplicate=1\",\"expected\":\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\\\"};duplicate=1\",\"expected\":\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVMTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GENERIC_EXTRA_ARGS_V2_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GENERIC_EXTRA_ARGS_V2_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GenericExtraArgsV2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVMExtraArgsV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_ACCOUNT_BYTE_SIZE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_ACCOUNT_BYTE_SIZE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V1)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V1)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V2)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_svmArgsToBytes\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_svmArgsToBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMExtraArgsV1\\\",\\\"url\\\":\\\"#evmextraargsv1\\\"};duplicate=1\",\"expected\":\"EVMExtraArgsV1 -> #evmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> #genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"url\\\":\\\"#svmextraargsv1\\\"};duplicate=1\",\"expected\":\"SVMExtraArgsV1 -> #svmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the token receiver\\\"};duplicate=1\",\"expected\":\"Address of the token receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows specifying out-of-order execution preference\\\"};duplicate=1\",\"expected\":\"Allows specifying out-of-order execution preference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap indicating which accounts are writable\\\"};duplicate=1\",\"expected\":\"Bitmap indicating which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Changes to this struct require RMN maintainer notification\\\"};duplicate=1\",\"expected\":\"Changes to this struct require RMN maintainer notification\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\\\"};duplicate=1\",\"expected\":\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compute units for execution on Solana\\\"};duplicate=1\",\"expected\":\"Compute units for execution on Solana\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures compute units (Solana's equivalent to gas)\\\"};duplicate=1\",\"expected\":\"Configures compute units (Solana's equivalent to gas)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Controls message execution order\\\"};duplicate=1\",\"expected\":\"Controls message execution order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core structure for token transfers used by the Risk Management Network (RMN):\\\"};duplicate=1\",\"expected\":\"Core structure for token transfers used by the Risk Management Network (RMN):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default value for allowOutOfOrderExecution varies by chain\\\"};duplicate=1\",\"expected\":\"Default value for allowOutOfOrderExecution varies by chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines token receiver details\\\"};duplicate=1\",\"expected\":\"Defines token receiver details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes EVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes EVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes GenericExtraArgsV2 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes GenericExtraArgsV2 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes SVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes SVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enhanced version of extra arguments adding execution order control:\\\"};duplicate=1\",\"expected\":\"Enhanced version of extra arguments adding execution order control:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First version of extra arguments, supporting basic gas limit configuration.\\\"};duplicate=1\",\"expected\":\"First version of extra arguments, supporting basic gas limit configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit for execution on destination chain\\\"};duplicate=1\",\"expected\":\"Gas limit for execution on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Includes configurable gas limit\\\"};duplicate=1\",\"expected\":\"Includes configurable gas limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Lists additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Lists additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of overhead accounts needed for message execution on SVM.\\\"};duplicate=1\",\"expected\":\"Number of overhead accounts needed for message execution on SVM.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents token amounts in their chain-specific format\\\"};duplicate=1\",\"expected\":\"Represents token amounts in their chain-specific format\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Solana VM-specific arguments for cross-chain messages:\\\"};duplicate=1\",\"expected\":\"Solana VM-specific arguments for cross-chain messages:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Some chains enforce specific values and will revert if not set correctly\\\"};duplicate=1\",\"expected\":\"Some chains enforce specific values and will revert if not set correctly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifies which accounts are writable\\\"};duplicate=1\",\"expected\":\"Specifies which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V1 extra arguments specific to Solana VM-based chains.\\\"};duplicate=1\",\"expected\":\"Structure for V1 extra arguments specific to Solana VM-based chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V2 extra arguments in cross-chain messages.\\\"};duplicate=1\",\"expected\":\"Structure for V2 extra arguments in cross-chain messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token amounts in CCIP messages.\\\"};duplicate=1\",\"expected\":\"Structure representing token amounts in CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SVM extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The SVM extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V1 extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V1 extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V2 generic extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V2 generic extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=1\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=2\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\\\"};duplicate=1\",\"expected\":\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for Solana VM extra arguments.\\\"};duplicate=1\",\"expected\":\"The identifier tag for Solana VM extra arguments.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\\\\\"CCIP EVMExtraArgsV1\\\\\\\"))).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\"CCIP EVMExtraArgsV1\\\"))).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maximum number of accounts that can be passed in SVMExtraArgs.\\\"};duplicate=1\",\"expected\":\"The maximum number of accounts that can be passed in SVMExtraArgs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The size of each SVM account address in bytes.\\\"};duplicate=1\",\"expected\":\"The size of each SVM account address in bytes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address on the local chain\\\"};duplicate=1\",\"expected\":\"Token address on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=1\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=2\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accounts\\\"};duplicate=1\",\"expected\":\"accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=1\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=2\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=1\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=1\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"computeUnits\\\"};duplicate=1\",\"expected\":\"computeUnits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=2\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenReceiver\\\"};duplicate=1\",\"expected\":\"tokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=1\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=2\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=3\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=4\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=5\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=6\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=7\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=1\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=2\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=3\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=4\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=5\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DestinationChainNotEnabled(uint64 destChainSelector);\\\"};duplicate=1\",\"expected\":\"error DestinationChainNotEnabled(uint64 destChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ExtraArgOutOfOrderExecutionMustBeTrue();\\\"};duplicate=1\",\"expected\":\"error ExtraArgOutOfOrderExecutionMustBeTrue();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error FeeTokenNotSupported(address token);\\\"};duplicate=1\",\"expected\":\"error FeeTokenNotSupported(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\\\"};duplicate=1\",\"expected\":\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsData();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsData();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsTag();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsTag();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\\\"};duplicate=1\",\"expected\":\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenReceiver();\\\"};duplicate=1\",\"expected\":\"error InvalidTokenReceiver();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageComputeUnitLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageComputeUnitLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\\\"};duplicate=1\",\"expected\":\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageGasLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageGasLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\\\"};duplicate=1\",\"expected\":\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\\\"};duplicate=1\",\"expected\":\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\\\"};duplicate=1\",\"expected\":\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySuiExtraArgsReceiverObjectIds(uint256 numReceiverObjectIds, uint256 maxReceiverObjectIds);\\\"};duplicate=1\",\"expected\":\"error TooManySuiExtraArgsReceiverObjectIds(uint256 numReceiverObjectIds, uint256 maxReceiverObjectIds);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\\\"};duplicate=1\",\"expected\":\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function convertTokenAmount( address fromToken, uint256 fromTokenAmount, address toToken ) external view returns (uint256);\\\"};duplicate=1\",\"expected\":\"function convertTokenAmount( address fromToken, uint256 fromTokenAmount, address toToken ) external view returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getDestChainConfig( uint64 destChainSelector ) external view returns (DestChainConfig memory);\\\"};duplicate=1\",\"expected\":\"function getDestChainConfig( uint64 destChainSelector ) external view returns (DestChainConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getFeeTokens() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getFeeTokens() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getStaticConfig() external view returns (StaticConfig memory);\\\"};duplicate=1\",\"expected\":\"function getStaticConfig() external view returns (StaticConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenTransferFeeConfig( uint64 destChainSelector, address token ) external view returns (TokenTransferFeeConfig memory);\\\"};duplicate=1\",\"expected\":\"function getTokenTransferFeeConfig( uint64 destChainSelector, address token ) external view returns (TokenTransferFeeConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getValidatedFee( uint64 destChainSelector, Client.EVM2AnyMessage calldata message ) external view returns (uint256);\\\"};duplicate=1\",\"expected\":\"function getValidatedFee( uint64 destChainSelector, Client.EVM2AnyMessage calldata message ) external view returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant typeAndVersion = \\\\\\\"FeeQuoter 1.6.0\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant typeAndVersion = \\\"FeeQuoter 1.6.0\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\\\"};duplicate=1\",\"expected\":\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\\\"};duplicate=1\",\"expected\":\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant FEE_BASE_DECIMALS = 36;\\\"};duplicate=1\",\"expected\":\"uint256 public constant FEE_BASE_DECIMALS = 36;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestinationChainNotEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestinationChainNotEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExtraArgOutOfOrderExecutionMustBeTrue\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExtraArgOutOfOrderExecutionMustBeTrue\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FEE_BASE_DECIMALS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FEE_BASE_DECIMALS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenNotSupported\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenNotSupported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidChainFamilySelector\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidChainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsTag\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsTag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSVMExtraArgsWritableBitmap\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSVMExtraArgsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenReceiver\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageComputeUnitLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageComputeUnitLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageFeeTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageFeeTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageGasLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageGasLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageTooLarge\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageTooLarge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaleGasPrice\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaleGasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySVMExtraArgsAccounts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySVMExtraArgsAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySuiExtraArgsReceiverObjectIds\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySuiExtraArgsReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UnsupportedNumberOfTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UnsupportedNumberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"convertTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"convertTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getDestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getDestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getFeeTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getFeeTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getStaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getStaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getValidatedFee\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getValidatedFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=2\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=3\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=4\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Internal library\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/internal#chain_family_selector_evm\\\"};duplicate=1\",\"expected\":\"Internal library -> /ccip/api-reference/evm/v1.6.0/internal#chain_family_selector_evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig.maxFeeJuelsPerMsg\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig.maxFeeJuelsPerMsg -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=2\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"chainFamilySelector\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/internal#chain_family_selector_evm\\\"};duplicate=1\",\"expected\":\"chainFamilySelector -> /ccip/api-reference/evm/v1.6.0/internal#chain_family_selector_evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getDestChainConfig\\\",\\\"url\\\":\\\"#getdestchainconfig\\\"};duplicate=1\",\"expected\":\"getDestChainConfig -> #getdestchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getStaticConfig\\\",\\\"url\\\":\\\"#getstaticconfig\\\"};duplicate=1\",\"expected\":\"getStaticConfig -> #getstaticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\").\\\"};duplicate=1\",\"expected\":\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Actual message size that was too large\\\"};duplicate=1\",\"expected\":\"Actual message size that was too large\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of fee token addresses\\\"};duplicate=1\",\"expected\":\"Array of fee token addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Basis points charged on token transfers, multiples of 0.1bps, or 1e-5\\\"};duplicate=1\",\"expected\":\"Basis points charged on token transfers, multiples of 0.1bps, or 1e-5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated message fee in Juels\\\"};duplicate=1\",\"expected\":\"Calculated message fee in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates and validates the fee for a CCIP message.\\\"};duplicate=1\",\"expected\":\"Calculates and validates the fee for a CCIP message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client.EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Client.EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains fee & validation configs for a destination chain. Retrieved via\\\"};duplicate=1\",\"expected\":\"Contains fee & validation configs for a destination chain. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains immutable configuration values set at contract deployment. Retrieved via\\\"};duplicate=1\",\"expected\":\"Contains immutable configuration values set at contract deployment. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a token amount from the token's decimals to a fee-denominated amount.\\\"};duplicate=1\",\"expected\":\"Converts a token amount from the token's decimals to a fee-denominated amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability bytes returned from source pool, must be >= Pool.CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\"};duplicate=1\",\"expected\":\"Data availability bytes returned from source pool, must be >= Pool.CCIP_LOCK_OR_BURN_V1_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability gas charged for overhead costs (e.g., OCR)\\\"};duplicate=1\",\"expected\":\"Data availability gas charged for overhead costs (e.g., OCR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default dest-chain gas charged per byte of data payload\\\"};duplicate=1\",\"expected\":\"Default dest-chain gas charged per byte of data payload\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged to execute a token transfer on the destination chain\\\"};duplicate=1\",\"expected\":\"Default gas charged to execute a token transfer on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas limit for a tx\\\"};duplicate=1\",\"expected\":\"Default gas limit for a tx\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default token fee charged per token transfer\\\"};duplicate=1\",\"expected\":\"Default token fee charged per token transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flat network fee to charge for messages, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Flat network fee to charge for messages, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged on top of the gasLimit to cover destination chain costs\\\"};duplicate=1\",\"expected\":\"Gas charged on top of the gasLimit to cover destination chain costs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged to execute the token transfer on the destination chain\\\"};duplicate=1\",\"expected\":\"Gas charged to execute the token transfer on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas units charged per byte of message data requiring availability\\\"};duplicate=1\",\"expected\":\"Gas units charged per byte of message data requiring availability\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"High dest-chain gas charged per byte of data payload (for EIP-7623)\\\"};duplicate=1\",\"expected\":\"High dest-chain gas charged per byte of data payload (for EIP-7623)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK token address\\\"};duplicate=1\",\"expected\":\"LINK token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed fee in Juels per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed fee in Juels per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed message size\\\"};duplicate=1\",\"expected\":\"Maximum allowed message size\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of accounts\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of receiver object IDs\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of receiver object IDs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of tokens per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of tokens per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum data payload size in bytes\\\"};duplicate=1\",\"expected\":\"Maximum data payload size in bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee that can be charged for a message\\\"};duplicate=1\",\"expected\":\"Maximum fee that can be charged for a message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee to charge per token transfer, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Maximum fee to charge per token transfer, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum gas limit for messages targeting EVMs\\\"};duplicate=1\",\"expected\":\"Maximum gas limit for messages targeting EVMs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum number of distinct ERC20 tokens transferred per message\\\"};duplicate=1\",\"expected\":\"Maximum number of distinct ERC20 tokens transferred per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum fee to charge per token transfer, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Minimum fee to charge per token transfer, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for data availability gas, multiples of bps (0.0001)\\\"};duplicate=1\",\"expected\":\"Multiplier for data availability gas, multiples of bps (0.0001)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for gas costs, 1e18 based (e.g., 11e17 = 10% extra cost)\\\"};duplicate=1\",\"expected\":\"Multiplier for gas costs, 1e18 based (e.g., 11e17 = 10% extra cost)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts in the extra args\\\"};duplicate=1\",\"expected\":\"Number of accounts in the extra args\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts provided\\\"};duplicate=1\",\"expected\":\"Number of accounts provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of receiver object IDs provided\\\"};duplicate=1\",\"expected\":\"Number of receiver object IDs provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of tokens in the message\\\"};duplicate=1\",\"expected\":\"Number of tokens in the message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Referenced in\\\"};duplicate=1\",\"expected\":\"Referenced in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the complete\\\"};duplicate=1\",\"expected\":\"Retrieves the complete\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the immutable\\\"};duplicate=1\",\"expected\":\"Retrieves the immutable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the contract type and version identifier.\\\"};duplicate=1\",\"expected\":\"Returns the contract type and version identifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the custom\\\"};duplicate=1\",\"expected\":\"Returns the custom\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the destination chain configuration for a given chain selector.\\\"};duplicate=1\",\"expected\":\"Returns the destination chain configuration for a given chain selector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the list of tokens that can be used to pay fees.\\\"};duplicate=1\",\"expected\":\"Returns the list of tokens that can be used to pay fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the static configuration of the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"Returns the static configuration of the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token transfer fee configuration for a specific token and destination chain.\\\"};duplicate=1\",\"expected\":\"Returns the token transfer fee configuration for a specific token and destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Selector identifying the destination chain's family (see\\\"};duplicate=1\",\"expected\":\"Selector identifying the destination chain's family (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing all configuration for a destination chain.\\\"};duplicate=1\",\"expected\":\"Structure containing all configuration for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing the static configuration of the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"Structure containing the static configuration of the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure defining the fee configuration for token transfers.\\\"};duplicate=1\",\"expected\":\"Structure defining the fee configuration for token transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP message to calculate fee for\\\"};duplicate=1\",\"expected\":\"The CCIP message to calculate fee for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of fromToken to convert\\\"};duplicate=1\",\"expected\":\"The amount of fromToken to convert\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The base decimals for cost calculations.\\\"};duplicate=1\",\"expected\":\"The base decimals for cost calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain configuration\\\"};duplicate=1\",\"expected\":\"The destination chain configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=1\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=2\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=3\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=4\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The disabled destination chain selector\\\"};duplicate=1\",\"expected\":\"The disabled destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The equivalent amount in toToken\\\"};duplicate=1\",\"expected\":\"The equivalent amount in toToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid chain family selector\\\"};duplicate=1\",\"expected\":\"The invalid chain family selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The provided writable bitmap\\\"};duplicate=1\",\"expected\":\"The provided writable bitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The staleness threshold in seconds\\\"};duplicate=1\",\"expected\":\"The staleness threshold in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The time passed since last update in seconds\\\"};duplicate=1\",\"expected\":\"The time passed since last update in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=1\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to convert from\\\"};duplicate=1\",\"expected\":\"The token to convert from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to convert to\\\"};duplicate=1\",\"expected\":\"The token to convert to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token transfer fee configuration\\\"};duplicate=1\",\"expected\":\"The token transfer fee configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The total fee in the smallest unit of the fee token\\\"};duplicate=1\",\"expected\":\"The total fee in the smallest unit of the fee token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported fee token address\\\"};duplicate=1\",\"expected\":\"The unsupported fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported token address\\\"};duplicate=1\",\"expected\":\"The unsupported token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The value at which billing switches from base to high rate\\\"};duplicate=1\",\"expected\":\"The value at which billing switches from base to high rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function converts token amounts based on their relative prices and decimals. Used for calculating fees when tokens with different decimal places are involved.\\\"};duplicate=1\",\"expected\":\"This function converts token amounts based on their relative prices and decimals. Used for calculating fees when tokens with different decimal places are involved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This is the primary function for fee calculation. It validates the message and destination chain, then calculates the total fee including execution costs, data availability costs, and token transfer fees.\\\"};duplicate=1\",\"expected\":\"This is the primary function for fee calculation. It validates the message and destination chain, then calculates the total fee including execution costs, data availability costs, and token transfer fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\\\"};duplicate=1\",\"expected\":\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to get the price or fee for an unsupported token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to get the price or fee for an unsupported token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to send a message to a disabled destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to send a message to a disabled destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unsupported token for fee payment.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unsupported token for fee payment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when extra args data is missing or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when extra args data is missing or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\\\"};duplicate=1\",\"expected\":\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\\\"};duplicate=1\",\"expected\":\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the destination chain's\\\"};duplicate=1\",\"expected\":\"Thrown when the destination chain's\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the extra args tag is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"Thrown when the extra args tag is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the gas price for a destination chain is stale.\\\"};duplicate=1\",\"expected\":\"Thrown when the gas price for a destination chain is stale.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\\\"};duplicate=1\",\"expected\":\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message data payload exceeds the maximum allowed size.\\\"};duplicate=1\",\"expected\":\"Thrown when the message data payload exceeds the maximum allowed size.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the number of tokens in a message exceeds the maximum allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when the number of tokens in a message exceeds the maximum allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\\\"};duplicate=1\",\"expected\":\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many accounts are specified in SVM (Solana) extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many accounts are specified in SVM (Solana) extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many receiver object IDs are specified in SUI extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many receiver object IDs are specified in SUI extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds a gas price can be stale before invalid (0 means disabled)\\\"};duplicate=1\",\"expected\":\"Time in seconds a gas price can be stale before invalid (0 means disabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds a token price can be stale before invalid\\\"};duplicate=1\",\"expected\":\"Time in seconds a token price can be stale before invalid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this destination chain is enabled\\\"};duplicate=1\",\"expected\":\"Whether this destination chain is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this token has custom transfer fees\\\"};duplicate=1\",\"expected\":\"Whether this token has custom transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether to enforce allowOutOfOrderExecution extraArg to be true\\\"};duplicate=1\",\"expected\":\"Whether to enforce allowOutOfOrderExecution extraArg to be true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actualSize\\\"};duplicate=1\",\"expected\":\"actualSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=2\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=1\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=2\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"containing all fee and validation parameters for the destination chain.\\\"};duplicate=1\",\"expected\":\"containing all fee and validation parameters for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"deciBps\\\"};duplicate=1\",\"expected\":\"deciBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenDestGasOverhead\\\"};duplicate=1\",\"expected\":\"defaultTokenDestGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenFeeUSDCents\\\"};duplicate=1\",\"expected\":\"defaultTokenFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTxGasLimit\\\"};duplicate=1\",\"expected\":\"defaultTxGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destBytesOverhead\\\"};duplicate=1\",\"expected\":\"destBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=3\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=4\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=5\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityMultiplierBps\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityMultiplierBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityOverheadGas\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityOverheadGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=1\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=2\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerDataAvailabilityByte\\\"};duplicate=1\",\"expected\":\"destGasPerDataAvailabilityByte\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteBase\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteBase\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteHigh\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteThreshold\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"enforceOutOfOrder\\\"};duplicate=1\",\"expected\":\"enforceOutOfOrder\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a token if set, otherwise returns the default configuration from\\\"};duplicate=1\",\"expected\":\"for a token if set, otherwise returns the default configuration from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for default values and can be set per-token via applyTokenTransferFeeConfigUpdates.\\\"};duplicate=1\",\"expected\":\"for default values and can be set per-token via applyTokenTransferFeeConfigUpdates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromTokenAmount\\\"};duplicate=1\",\"expected\":\"fromTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromToken\\\"};duplicate=1\",\"expected\":\"fromToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasMultiplierWeiPerEth\\\"};duplicate=1\",\"expected\":\"gasMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"gasPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=1\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=2\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"linkToken\\\"};duplicate=1\",\"expected\":\"linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxAccounts\\\"};duplicate=1\",\"expected\":\"maxAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxDataBytes\\\"};duplicate=1\",\"expected\":\"maxDataBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=1\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=2\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeUSDCents\\\"};duplicate=1\",\"expected\":\"maxFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=1\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=2\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxPerMsgGasLimit\\\"};duplicate=1\",\"expected\":\"maxPerMsgGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxReceiverObjectIds\\\"};duplicate=1\",\"expected\":\"maxReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSize\\\"};duplicate=1\",\"expected\":\"maxSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=1\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minFeeUSDCents\\\"};duplicate=1\",\"expected\":\"minFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"msgFeeJuels\\\"};duplicate=1\",\"expected\":\"msgFeeJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkFeeUSDCents\\\"};duplicate=1\",\"expected\":\"networkFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=1\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=2\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numReceiverObjectIds\\\"};duplicate=1\",\"expected\":\"numReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numberOfTokens\\\"};duplicate=1\",\"expected\":\"numberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"threshold\\\"};duplicate=1\",\"expected\":\"threshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timePassed\\\"};duplicate=1\",\"expected\":\"timePassed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"toToken\\\"};duplicate=1\",\"expected\":\"toToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"tokenPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=1\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=2\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=3\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=4\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=5\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=6\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=10\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=11\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=12\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=13\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=14\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=15\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=16\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=10\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=11\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=12\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=13\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=4\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=5\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=6\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=7\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=8\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=9\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint96\\\"};duplicate=1\",\"expected\":\"uint96\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"values set at contract deployment.\\\"};duplicate=1\",\"expected\":\"values set at contract deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if the given chain ID is supported for sending/receiving.\\\"};duplicate=1\",\"expected\":\"Checks if the given chain ID is supported for sending/receiving.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/i-type-and-version\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for Aptos chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector APTOS\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for Aptos chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector APTOS\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for EVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector EVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for EVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector EVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for SUI chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SUI\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for SUI chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SUI\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for SVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for SVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rebalancer;\\\"};duplicate=1\",\"expected\":\"address internal s_rebalancer;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_acceptLiquidity;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_acceptLiquidity;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InsufficientLiquidity();\\\"};duplicate=1\",\"expected\":\"error InsufficientLiquidity();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error LiquidityNotAccepted();\\\"};duplicate=1\",\"expected\":\"error LiquidityNotAccepted();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function canAcceptLiquidity() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function canAcceptLiquidity() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRebalancer() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRebalancer() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function provideLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function provideLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRebalancer(address rebalancer) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRebalancer(address rebalancer) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function withdrawLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function withdrawLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant override typeAndVersion = \\\\\\\"LockReleaseTokenPool 1.5.1\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant override typeAndVersion = \\\"LockReleaseTokenPool 1.5.1\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InsufficientLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InsufficientLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LiquidityNotAccepted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LiquidityNotAccepted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"canAcceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"canAcceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_acceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"provideLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"provideLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"withdrawLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"withdrawLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.6.0/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.6.0/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.6.0/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/pool#releaseormintoutv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintOutV1 -> /ccip/api-reference/evm/v1.6.0/pool#releaseormintoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier specifying the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier specifying the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the RMN proxy contract\\\"};duplicate=1\",\"expected\":\"Address of the RMN proxy contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the router contract\\\"};duplicate=1\",\"expected\":\"Address of the router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds external liquidity to the pool.\\\"};duplicate=1\",\"expected\":\"Adds external liquidity to the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the owner to update the liquidity manager (rebalancer) address.\\\"};duplicate=1\",\"expected\":\"Allows the owner to update the liquidity manager (rebalancer) address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to add liquidity to the pool:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to add liquidity to the pool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to withdraw liquidity:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to withdraw liquidity:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP handles mint/burn operations on other chains\\\"};duplicate=1\",\"expected\":\"CCIP handles mint/burn operations on other chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates correct local token amounts using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates correct local token amounts using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can be used in conjunction with TokenAdminRegistry updates\\\"};duplicate=1\",\"expected\":\"Can be used in conjunction with TokenAdminRegistry updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks interface support using ERC165.\\\"};duplicate=1\",\"expected\":\"Checks interface support using ERC165.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures decimal precision for local tokens\\\"};duplicate=1\",\"expected\":\"Configures decimal precision for local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the final amount released in local tokens\\\"};duplicate=1\",\"expected\":\"Contains the final amount released in local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the pool can accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Determines whether the pool can accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Locked event upon successful locking\\\"};duplicate=1\",\"expected\":\"Emits a Locked event upon successful locking\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a Released event\\\"};duplicate=1\",\"expected\":\"Emits a Released event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is transferred from an older pool version during an upgrade.\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is transferred from an older pool version during an upgrade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enables smooth transition of liquidity and transactions\\\"};duplicate=1\",\"expected\":\"Enables smooth transition of liquidity and transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Establishes the initial whitelist\\\"};duplicate=1\",\"expected\":\"Establishes the initial whitelist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Facilitates pool upgrades by transferring liquidity from an older pool version:\\\"};duplicate=1\",\"expected\":\"Facilitates pool upgrades by transferring liquidity from an older pool version:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\\\"};duplicate=1\",\"expected\":\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection, adding support for ILiquidityContainer.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection, adding support for ILiquidityContainer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial list of authorized addresses\\\"};duplicate=1\",\"expected\":\"Initial list of authorized addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the token pool with its configuration parameters:\\\"};duplicate=1\",\"expected\":\"Initializes the token pool with its configuration parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the lock operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the lock operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the release operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the release operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Links to the RMN proxy and router\\\"};duplicate=1\",\"expected\":\"Links to the RMN proxy and router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Locks tokens in the pool for cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Locks tokens in the pool for cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=1\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=2\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only works if the pool accepts liquidity\\\"};duplicate=1\",\"expected\":\"Only works if the pool accepts liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token locking with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token locking with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token release with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token release with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\\\"};duplicate=1\",\"expected\":\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Releases tokens from the pool to a recipient.\\\"};duplicate=1\",\"expected\":\"Releases tokens from the pool to a recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes liquidity from the pool.\\\"};duplicate=1\",\"expected\":\"Removes liquidity from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires prior token approval\\\"};duplicate=1\",\"expected\":\"Requires prior token approval\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires sufficient pool balance\\\"};duplicate=1\",\"expected\":\"Requires sufficient pool balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires this pool to be set as rebalancer in the source pool\\\"};duplicate=1\",\"expected\":\"Requires this pool to be set as rebalancer in the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rebalancer address.\\\"};duplicate=1\",\"expected\":\"Returns the current rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\\\"};duplicate=1\",\"expected\":\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the liquidity acceptance policy\\\"};duplicate=1\",\"expected\":\"Sets the liquidity acceptance policy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the token contract reference\\\"};duplicate=1\",\"expected\":\"Sets up the token contract reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports both atomic and gradual migration strategies\\\"};duplicate=1\",\"expected\":\"Supports both atomic and gradual migration strategies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\\\"};duplicate=1\",\"expected\":\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the source pool\\\"};duplicate=1\",\"expected\":\"The address of the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to provide\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to provide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to transfer\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity transferred\\\"};duplicate=1\",\"expected\":\"The amount of liquidity transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current liquidity manager address\\\"};duplicate=1\",\"expected\":\"The current liquidity manager address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimal precision for the local token\\\"};duplicate=1\",\"expected\":\"The decimal precision for the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\\\\\"wrapped\\\\\\\" token) on all remote chains) is maintained\\\"};duplicate=1\",\"expected\":\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\"wrapped\\\" token) on all remote chains) is maintained\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new rebalancer address to set\\\"};duplicate=1\",\"expected\":\"The new rebalancer address to set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address\\\"};duplicate=1\",\"expected\":\"The source pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to manage\\\"};duplicate=1\",\"expected\":\"The token contract to manage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There is one canonical token on the chain\\\"};duplicate=1\",\"expected\":\"There is one canonical token on the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to withdraw more liquidity than available in the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to withdraw more liquidity than available in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers liquidity from an older pool version.\\\"};duplicate=1\",\"expected\":\"Transfers liquidity from an older pool version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens directly to the caller\\\"};duplicate=1\",\"expected\":\"Transfers tokens directly to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Transfers tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"True if the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rebalancer address.\\\"};duplicate=1\",\"expected\":\"Updates the rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"Whether the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"acceptLiquidity\\\"};duplicate=1\",\"expected\":\"acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rebalancer\\\"};duplicate=1\",\"expected\":\"rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_owner;\\\"};duplicate=1\",\"expected\":\"address private s_owner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_pendingOwner;\\\"};duplicate=1\",\"expected\":\"address private s_pendingOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address newOwner, address pendingOwner);\\\"};duplicate=1\",\"expected\":\"constructor(address newOwner, address pendingOwner);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CannotTransferToSelf();\\\"};duplicate=1\",\"expected\":\"error CannotTransferToSelf();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MustBeProposedOwner();\\\"};duplicate=1\",\"expected\":\"error MustBeProposedOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OwnerCannotBeZero();\\\"};duplicate=1\",\"expected\":\"error OwnerCannotBeZero();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event OwnershipTransferred(address indexed from, address indexed to);\\\"};duplicate=1\",\"expected\":\"event OwnershipTransferred(address indexed from, address indexed to);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function acceptOwnership() external override;\\\"};duplicate=1\",\"expected\":\"function acceptOwnership() external override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function owner() public view override returns (address);\\\"};duplicate=1\",\"expected\":\"function owner() public view override returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferOwnership(address to) public override onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferOwnership(address to) public override onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"modifier onlyOwner();\\\"};duplicate=1\",\"expected\":\"modifier onlyOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CannotTransferToSelf\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CannotTransferToSelf\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MustBeProposedOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MustBeProposedOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnerCannotBeZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnerCannotBeZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnershipTransferred\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnershipTransferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"acceptOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"acceptOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"onlyOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"onlyOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_pendingOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an owner to begin transferring ownership to a new address.\\\"};duplicate=1\",\"expected\":\"Allows an owner to begin transferring ownership to a new address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an ownership transfer to be completed by the recipient.\\\"};duplicate=1\",\"expected\":\"Allows an ownership transfer to be completed by the recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CannotTransferToSelf if attempting to transfer to current owner\\\"};duplicate=1\",\"expected\":\"CannotTransferToSelf if attempting to transfer to current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clears pending owner\\\"};duplicate=1\",\"expected\":\"Clears pending owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current owner initiating the transfer\\\"};duplicate=1\",\"expected\":\"Current owner initiating the transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits OwnershipTransferred event\\\"};duplicate=1\",\"expected\":\"Emits OwnershipTransferred event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an ownership transfer is completed.\\\"};duplicate=1\",\"expected\":\"Emitted when an ownership transfer is completed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the current owner initiates an ownership transfer.\\\"};duplicate=1\",\"expected\":\"Emitted when the current owner initiates an ownership transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\\\"};duplicate=1\",\"expected\":\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with an owner and optionally a pending owner.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with an owner and optionally a pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Modifier that restricts function access to the contract owner.\\\"};duplicate=1\",\"expected\":\"Modifier that restricts function access to the contract owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"New owner\\\"};duplicate=1\",\"expected\":\"New owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnlyCallableByOwner if caller is not the current owner\\\"};duplicate=1\",\"expected\":\"OnlyCallableByOwner if caller is not the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional address to initiate ownership transfer to\\\"};duplicate=1\",\"expected\":\"Optional address to initiate ownership transfer to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous owner\\\"};duplicate=1\",\"expected\":\"Previous owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposed new owner\\\"};duplicate=1\",\"expected\":\"Proposed new owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current owner's address.\\\"};duplicate=1\",\"expected\":\"Returns the current owner's address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with MustBeProposedOwner if caller is not the pending owner.\\\"};duplicate=1\",\"expected\":\"Reverts with MustBeProposedOwner if caller is not the pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OwnerCannotBeZero if newOwner is address(0)\\\"};duplicate=1\",\"expected\":\"Reverts with OwnerCannotBeZero if newOwner is address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets newOwner as the initial owner\\\"};duplicate=1\",\"expected\":\"Sets newOwner as the initial owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current owner\\\"};duplicate=1\",\"expected\":\"The address of the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The initial owner of the contract\\\"};duplicate=1\",\"expected\":\"The initial owner of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\\\"};duplicate=1\",\"expected\":\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the current owner of the contract.\\\"};duplicate=1\",\"expected\":\"The owner is the current owner of the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\\\"};duplicate=1\",\"expected\":\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pending owner is the address to which ownership may be transferred.\\\"};duplicate=1\",\"expected\":\"The pending owner is the address to which ownership may be transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by someone other than the owner.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by someone other than the owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set the owner to address(0).\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set the owner to address(0).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to transfer ownership to the current owner.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to transfer ownership to the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when someone other than the pending owner tries to accept ownership.\\\"};duplicate=1\",\"expected\":\"Thrown when someone other than the pending owner tries to accept ownership.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates owner to the caller\\\"};duplicate=1\",\"expected\":\"Updates owner to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When successful:\\\"};duplicate=1\",\"expected\":\"When successful:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=2\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newOwner\\\"};duplicate=1\",\"expected\":\"newOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pendingOwner\\\"};duplicate=1\",\"expected\":\"pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=2\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/ownable-2-step-msg-sender\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\\\"};duplicate=1\",\"expected\":\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\\\"};duplicate=1\",\"expected\":\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error BucketOverfilled();\\\"};duplicate=1\",\"expected\":\"error BucketOverfilled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DisabledNonZeroRateLimit(Config config);\\\"};duplicate=1\",\"expected\":\"error DisabledNonZeroRateLimit(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRateLimitRate(Config rateLimiterConfig);\\\"};duplicate=1\",\"expected\":\"error InvalidRateLimitRate(Config rateLimiterConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByAdminOrOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByAdminOrOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error RateLimitMustBeDisabled();\\\"};duplicate=1\",\"expected\":\"error RateLimitMustBeDisabled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event ConfigChanged(Config config);\\\"};duplicate=1\",\"expected\":\"event ConfigChanged(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\\\"};duplicate=1\",\"expected\":\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\\\"};duplicate=1\",\"expected\":\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BucketOverfilled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"BucketOverfilled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ConfigChanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Config\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRateLimitRate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByAdminOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByAdminOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenBucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateRefill\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateRefill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consume\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_currentTokenBucketState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_min\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_min\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"url\\\":\\\"#configchanged\\\"};duplicate=1\",\"expected\":\"ConfigChanged -> #configchanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=1\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=2\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=3\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=4\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=5\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=6\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=7\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"url\\\":\\\"#disablednonzeroratelimit\\\"};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit -> #disablednonzeroratelimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"url\\\":\\\"#invalidratelimitrate\\\"};duplicate=1\",\"expected\":\"InvalidRateLimitRate -> #invalidratelimitrate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"url\\\":\\\"#ratelimitmustbedisabled\\\"};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled -> #ratelimitmustbedisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=1\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=2\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=3\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=4\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=5\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=6\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=7\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=8\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=9\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"url\\\":\\\"#tokenmaxcapacityexceeded\\\"};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded -> #tokenmaxcapacityexceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"url\\\":\\\"#tokenratelimitreached\\\"};duplicate=1\",\"expected\":\"TokenRateLimitReached -> #tokenratelimitreached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokensConsumed\\\",\\\"url\\\":\\\"#tokensconsumed\\\"};duplicate=1\",\"expected\":\"TokensConsumed -> #tokensconsumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"url\\\":\\\"#_currenttokenbucketstate\\\"};duplicate=1\",\"expected\":\"_currentTokenBucketState -> #_currenttokenbucketstate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=1\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=2\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or\\\"};duplicate=1\",\"expected\":\", or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adjusts token amount to respect new capacity\\\"};duplicate=1\",\"expected\":\"Adjusts token amount to respect new capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically refills tokens based on elapsed time\\\"};duplicate=1\",\"expected\":\"Automatically refills tokens based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the number of tokens to add during a refill operation.\\\"};duplicate=1\",\"expected\":\"Calculates the number of tokens to add during a refill operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates token refill based on elapsed time\\\"};duplicate=1\",\"expected\":\"Calculates token refill based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes tokens to add based on elapsed time and rate\\\"};duplicate=1\",\"expected\":\"Computes tokens to add based on elapsed time and rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration parameters for the rate limiter.\\\"};duplicate=1\",\"expected\":\"Configuration parameters for the rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration structure used to configure\\\"};duplicate=1\",\"expected\":\"Configuration structure used to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration update process:\\\"};duplicate=1\",\"expected\":\"Configuration update process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current token balance\\\"};duplicate=1\",\"expected\":\"Current token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rate limiter\\\"};duplicate=1\",\"expected\":\"Emitted when the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are successfully consumed from the\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are successfully consumed from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enforces capacity and rate limits\\\"};duplicate=1\",\"expected\":\"Enforces capacity and rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures result doesn't exceed bucket capacity\\\"};duplicate=1\",\"expected\":\"Ensures result doesn't exceed bucket capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First number\\\"};duplicate=1\",\"expected\":\"First number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For disabled configurations:\\\"};duplicate=1\",\"expected\":\"For disabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For enabled configurations:\\\"};duplicate=1\",\"expected\":\"For enabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key behaviors:\\\"};duplicate=1\",\"expected\":\"Key behaviors:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum token capacity\\\"};duplicate=1\",\"expected\":\"Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"May throw\\\"};duplicate=1\",\"expected\":\"May throw\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate and capacity must be zero\\\"};duplicate=1\",\"expected\":\"Rate and capacity must be zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate must be non-zero and less than capacity\\\"};duplicate=1\",\"expected\":\"Rate must be non-zero and less than capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refill calculation:\\\"};duplicate=1\",\"expected\":\"Refill calculation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\\\"};duplicate=1\",\"expected\":\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents the state and configuration of a token bucket rate limiter.\\\"};duplicate=1\",\"expected\":\"Represents the state and configuration of a token bucket rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the current state of a token bucket, including automatic refill calculations.\\\"};duplicate=1\",\"expected\":\"Retrieves the current state of a token bucket, including automatic refill calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state without modifying storage\\\"};duplicate=1\",\"expected\":\"Returns the current state without modifying storage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the new token balance\\\"};duplicate=1\",\"expected\":\"Returns the new token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the smaller of two numbers.\\\"};duplicate=1\",\"expected\":\"Returns the smaller of two numbers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Second number\\\"};duplicate=1\",\"expected\":\"Second number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Skips execution if rate limiting is disabled or requestTokens is zero\\\"};duplicate=1\",\"expected\":\"Skips execution if rate limiting is disabled or requestTokens is zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"State management structure:\\\"};duplicate=1\",\"expected\":\"State management structure:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The configuration to validate\\\"};duplicate=1\",\"expected\":\"The configuration to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current state of the token bucket\\\"};duplicate=1\",\"expected\":\"The current state of the token bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration applied\\\"};duplicate=1\",\"expected\":\"The new configuration applied\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration to apply\\\"};duplicate=1\",\"expected\":\"The new configuration to apply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token balance after refill\\\"};duplicate=1\",\"expected\":\"The new token balance after refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens consumed\\\"};duplicate=1\",\"expected\":\"The number of tokens consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to consume\\\"};duplicate=1\",\"expected\":\"The number of tokens to consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address (use address(0) for aggregate value capacity)\\\"};duplicate=1\",\"expected\":\"The token address (use address(0) for aggregate value capacity)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to configure\\\"};duplicate=1\",\"expected\":\"The token bucket to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to consume from\\\"};duplicate=1\",\"expected\":\"The token bucket to consume from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses the configuration parameters defined in\\\"};duplicate=1\",\"expected\":\"This struct uses the configuration parameters defined in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a disabled\\\"};duplicate=1\",\"expected\":\"Thrown when a disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by an unauthorized address.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by an unauthorized address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the rate limit\\\"};duplicate=1\",\"expected\":\"Thrown when the rate limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the\\\"};duplicate=1\",\"expected\":\"Thrown when the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time elapsed since last refill (in seconds)\\\"};duplicate=1\",\"expected\":\"Time elapsed since last refill (in seconds)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokens per second refill rate\\\"};duplicate=1\",\"expected\":\"Tokens per second refill rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket parameters (enabled state, capacity, rate)\\\"};duplicate=1\",\"expected\":\"Updates bucket parameters (enabled state, capacity, rate)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket state with current refill before applying changes\\\"};duplicate=1\",\"expected\":\"Updates bucket state with current refill before applying changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the bucket state to reflect the current block timestamp:\\\"};duplicate=1\",\"expected\":\"Updates the bucket state to reflect the current block timestamp:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the lastUpdated timestamp\\\"};duplicate=1\",\"expected\":\"Updates the lastUpdated timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rate limiter configuration.\\\"};duplicate=1\",\"expected\":\"Updates the rate limiter configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used internally by\\\"};duplicate=1\",\"expected\":\"Used internally by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Utility function for safe minimum value calculation.\\\"};duplicate=1\",\"expected\":\"Utility function for safe minimum value calculation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates against mustBeDisabled requirement\\\"};duplicate=1\",\"expected\":\"Validates against mustBeDisabled requirement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates rate limiter configuration parameters.\\\"};duplicate=1\",\"expected\":\"Validates rate limiter configuration parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validation rules:\\\"};duplicate=1\",\"expected\":\"Validation rules:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the configuration must be disabled\\\"};duplicate=1\",\"expected\":\"Whether the configuration must be disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"a\\\"};duplicate=1\",\"expected\":\"a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"b\\\"};duplicate=1\",\"expected\":\"b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=1\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=2\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity\\\"};duplicate=1\",\"expected\":\"capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=1\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=2\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=3\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contains more tokens than its capacity.\\\"};duplicate=1\",\"expected\":\"contains more tokens than its capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event for non-zero consumption\\\"};duplicate=1\",\"expected\":\"event for non-zero consumption\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"has non-zero rate or capacity values.\\\"};duplicate=1\",\"expected\":\"has non-zero rate or capacity values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid (rate is zero or exceeds capacity).\\\"};duplicate=1\",\"expected\":\"is invalid (rate is zero or exceeds capacity).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is updated.\\\"};duplicate=1\",\"expected\":\"is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Activation state of the rate limiter\\\"};duplicate=1\",\"expected\":\"isEnabled: Activation state of the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Whether rate limiting is active\\\"};duplicate=1\",\"expected\":\"isEnabled: Whether rate limiting is active\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\\\"};duplicate=1\",\"expected\":\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"mustBeDisabled\\\"};duplicate=1\",\"expected\":\"mustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on violations\\\"};duplicate=1\",\"expected\":\"on violations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Token refill rate per second\\\"};duplicate=1\",\"expected\":\"rate: Token refill rate per second\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Tokens added per second during refill\\\"};duplicate=1\",\"expected\":\"rate: Tokens added per second during refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate\\\"};duplicate=1\",\"expected\":\"rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requestTokens\\\"};duplicate=1\",\"expected\":\"requestTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=1\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=2\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timeDiff\\\"};duplicate=1\",\"expected\":\"timeDiff\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=1\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens: Current token balance in the bucket\\\"};duplicate=1\",\"expected\":\"tokens: Current token balance in the bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address tokenAdminRegistry);\\\"};duplicate=1\",\"expected\":\"constructor(address tokenAdminRegistry);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _registerAdmin(address token, address admin) internal;\\\"};duplicate=1\",\"expected\":\"function _registerAdmin(address token, address admin) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAccessControlDefaultAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAccessControlDefaultAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaGetCCIPAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaGetCCIPAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaOwner(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaOwner(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_registerAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_registerAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAccessControlDefaultAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAccessControlDefaultAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaGetCCIPAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaGetCCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"url\\\":\\\"#addresszero\\\"};duplicate=1\",\"expected\":\"AddressZero -> #addresszero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=1\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=2\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=1\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=2\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RequiredRoleNotFound\\\",\\\"url\\\":\\\"#requiredrolenotfound\\\"};duplicate=1\",\"expected\":\"RequiredRoleNotFound -> #requiredrolenotfound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenAdminRegistry\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/token-admin-registry\\\"};duplicate=1\",\"expected\":\"TokenAdminRegistry -> /ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=2\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's getCCIPAdmin method\\\"};duplicate=1\",\"expected\":\"Calls token's getCCIPAdmin method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's owner method\\\"};duplicate=1\",\"expected\":\"Calls token's owner method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core registration logic:\\\"};duplicate=1\",\"expected\":\"Core registration logic:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with a reference to the\\\"};duplicate=1\",\"expected\":\"Initializes the contract with a reference to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to handle administrator registration.\\\"};duplicate=1\",\"expected\":\"Internal function to handle administrator registration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=1\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=2\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes administrator to registry\\\"};duplicate=1\",\"expected\":\"Proposes administrator to registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the getCCIPAdmin method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the getCCIPAdmin method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the owner method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the owner method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the immutable registry reference\\\"};duplicate=1\",\"expected\":\"Sets up the immutable registry reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the TokenAdminRegistry contract\\\"};duplicate=1\",\"expected\":\"The address of the TokenAdminRegistry contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=1\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=2\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using AccessControl:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using AccessControl:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using getCCIPAdmin:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using getCCIPAdmin:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using owner pattern:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using owner pattern:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates caller is the admin (reverts with\\\"};duplicate=1\",\"expected\":\"Validates caller is the admin (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the tokenAdminRegistry address is not zero (reverts with\\\"};duplicate=1\",\"expected\":\"Validates the tokenAdminRegistry address is not zero (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\\\"};duplicate=1\",\"expected\":\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"admin\\\"};duplicate=1\",\"expected\":\"admin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=1\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=2\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAdminRegistry\\\"};duplicate=1\",\"expected\":\"tokenAdminRegistry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AlreadyRegistered(address token);\\\"};duplicate=1\",\"expected\":\"error AlreadyRegistered(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenPoolToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidTokenPoolToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyPendingAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyPendingAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyRegistryModuleOrOwner(address sender);\\\"};duplicate=1\",\"expected\":\"error OnlyRegistryModuleOrOwner(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddress();\\\"};duplicate=1\",\"expected\":\"error ZeroAddress();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\\\"};duplicate=1\",\"expected\":\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleAdded(address module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleAdded(address module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleRemoved(address indexed module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleRemoved(address indexed module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\\\"};duplicate=1\",\"expected\":\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AddressZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AlreadyRegistered\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AlreadyRegistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenPoolToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenPoolToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyPendingAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyPendingAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyRegistryModuleOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyRegistryModuleOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=1\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setPool\\\",\\\"url\\\":\\\"#setpool\\\"};duplicate=1\",\"expected\":\"setPool -> #setpool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data structure for each token.\\\"};duplicate=1\",\"expected\":\"Configuration data structure for each token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new registry module is authorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a new registry module is authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is deauthorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is deauthorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token's pool configuration is changed via\\\"};duplicate=1\",\"expected\":\"Emitted when a token's pool configuration is changed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is completed via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator transfer is completed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=3\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=4\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of all configured tokens for efficient enumeration.\\\"};duplicate=1\",\"expected\":\"Set of all configured tokens for efficient enumeration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized registry modules that can register administrators.\\\"};duplicate=1\",\"expected\":\"Set of authorized registry modules that can register administrators.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores configuration data for each token, including administrators and pool addresses.\\\"};duplicate=1\",\"expected\":\"Stores configuration data for each token, including administrators and pool addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the newly authorized module\\\"};duplicate=1\",\"expected\":\"The address of the newly authorized module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the removed module\\\"};duplicate=1\",\"expected\":\"The address of the removed module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new administrator address\\\"};duplicate=1\",\"expected\":\"The new administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new pool address\\\"};duplicate=1\",\"expected\":\"The new pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The previous pool address\\\"};duplicate=1\",\"expected\":\"The previous pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=1\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=2\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being configured\\\"};duplicate=1\",\"expected\":\"The token address being configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that already has an administrator\\\"};duplicate=1\",\"expected\":\"The token address that already has an administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that is not supported by the pool\\\"};duplicate=1\",\"expected\":\"The token address that is not supported by the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role has been transferred\\\"};duplicate=1\",\"expected\":\"The token contract whose admin role has been transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=1\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=2\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=3\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to registry modules or owner is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to registry modules or owner is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to the token administrator is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to the token administrator is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\\\"};duplicate=1\",\"expected\":\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to register an administrator for a token that already has one.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to register an administrator for a token that already has one.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set a pool that doesn't support the token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set a pool that doesn't support the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) where not allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) where not allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=6\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=12\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=13\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=14\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=1\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=2\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=1\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newPool\\\"};duplicate=1\",\"expected\":\"newPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"previousPool\\\"};duplicate=1\",\"expected\":\"previousPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=4\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=5\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=6\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.AddressSet internal s_allowlist;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.AddressSet internal s_allowlist;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.UintSet internal s_remoteChainSelectors;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.UintSet internal s_remoteChainSelectors;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IERC20 internal immutable i_token;\\\"};duplicate=1\",\"expected\":\"IERC20 internal immutable i_token;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IRouter internal s_router;\\\"};duplicate=1\",\"expected\":\"IRouter internal s_router;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal immutable i_rmnProxy;\\\"};duplicate=1\",\"expected\":\"address internal immutable i_rmnProxy;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rateLimitAdmin;\\\"};duplicate=1\",\"expected\":\"address internal s_rateLimitAdmin;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_allowlistEnabled;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_allowlistEnabled;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\\\"};duplicate=1\",\"expected\":\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CallerIsNotARampOnRouter(address caller);\\\"};duplicate=1\",\"expected\":\"error CallerIsNotARampOnRouter(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainAlreadyExists(uint64 chainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainAlreadyExists(uint64 chainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainNotAllowed(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainNotAllowed(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CursedByRMN();\\\"};duplicate=1\",\"expected\":\"error CursedByRMN();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\\\"};duplicate=1\",\"expected\":\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\\\"};duplicate=1\",\"expected\":\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MismatchedArrayLengths();\\\"};duplicate=1\",\"expected\":\"error MismatchedArrayLengths();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error NonExistentChain(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error NonExistentChain(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\\\"};duplicate=1\",\"expected\":\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error SenderNotAllowed(address sender);\\\"};duplicate=1\",\"expected\":\"error SenderNotAllowed(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error Unauthorized(address caller);\\\"};duplicate=1\",\"expected\":\"error Unauthorized(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddressNotAllowed();\\\"};duplicate=1\",\"expected\":\"error ZeroAddressNotAllowed();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\\\"};duplicate=1\",\"expected\":\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _checkAllowList(address sender) internal view;\\\"};duplicate=1\",\"expected\":\"function _checkAllowList(address sender) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\\\"};duplicate=1\",\"expected\":\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\\\"};duplicate=1\",\"expected\":\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowList() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getAllowList() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowListEnabled() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function getAllowListEnabled() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRateLimitAdmin() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRateLimitAdmin() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\\\"};duplicate=1\",\"expected\":\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRmnProxy() public view returns (address rmnProxy);\\\"};duplicate=1\",\"expected\":\"function getRmnProxy() public view returns (address rmnProxy);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRouter() public view returns (address router);\\\"};duplicate=1\",\"expected\":\"function getRouter() public view returns (address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getSupportedChains() public view returns (uint64[] memory);\\\"};duplicate=1\",\"expected\":\"function getSupportedChains() public view returns (uint64[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getToken() public view returns (IERC20 token);\\\"};duplicate=1\",\"expected\":\"function getToken() public view returns (IERC20 token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenDecimals() public view virtual returns (uint8 decimals);\\\"};duplicate=1\",\"expected\":\"function getTokenDecimals() public view virtual returns (uint8 decimals);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedToken(address token) public view virtual returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedToken(address token) public view virtual returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRouter(address newRouter) public onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRouter(address newRouter) public onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\\\"};duplicate=1\",\"expected\":\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\\\"};duplicate=1\",\"expected\":\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\\\"};duplicate=1\",\"expected\":\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 internal immutable i_tokenDecimals;\\\"};duplicate=1\",\"expected\":\"uint8 internal immutable i_tokenDecimals;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainAlreadyExists\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainAlreadyExists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CursedByRMN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CursedByRMN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDecimalArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDecimalArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSourcePoolAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MismatchedArrayLengths\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MismatchedArrayLengths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"NonExistentChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OverflowDetected\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OverflowDetected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolAlreadyAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Rate Limiting\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Rate Limiting\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RemoteChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RemoteChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SenderNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Unauthorized\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Unauthorized\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateLocalAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateLocalAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_checkAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_checkAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeInboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeInboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeOutboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeOutboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_encodeLocalDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_encodeLocalDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOffRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOffRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOnRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_parseRemoteDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_parseRemoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRateLimitConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRateLimitConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateLockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateReleaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"addRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"addRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyChainUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyChainUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowListEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowListEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentInboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentInboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentOutboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentOutboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemotePools\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemotePools\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemoteToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemoteToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getSupportedChains\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getSupportedChains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_allowlistEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_allowlistEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_rmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_tokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_tokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_token\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"removeRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"removeRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_allowlist\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainSelectors\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remotePoolAddresses\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remotePoolAddresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_router\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=2\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainConfigured\\\",\\\"url\\\":\\\"#chainconfigured\\\"};duplicate=1\",\"expected\":\"ChainConfigured -> #chainconfigured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=1\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=2\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"url\\\":\\\"#invalidremotechaindecimals\\\"};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals -> #invalidremotechaindecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"url\\\":\\\"#invalidremotepoolforchain\\\"};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain -> #invalidremotepoolforchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"url\\\":\\\"#nonexistentchain\\\"};duplicate=1\",\"expected\":\"NonExistentChain -> #nonexistentchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"url\\\":\\\"#poolalreadyadded\\\"};duplicate=1\",\"expected\":\"PoolAlreadyAdded -> #poolalreadyadded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.0/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.0/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.0/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.0/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/rate-limiter#tokenbucket\\\"};duplicate=1\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.0/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.0/rate-limiter#tokenbucket\\\"};duplicate=2\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.0/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolAdded\\\",\\\"url\\\":\\\"#remotepooladded\\\"};duplicate=1\",\"expected\":\"RemotePoolAdded -> #remotepooladded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolRemoved\\\",\\\"url\\\":\\\"#remotepoolremoved\\\"};duplicate=1\",\"expected\":\"RemotePoolRemoved -> #remotepoolremoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RouterUpdated\\\",\\\"url\\\":\\\"#routerupdated\\\"};duplicate=1\",\"expected\":\"RouterUpdated -> #routerupdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"url\\\":\\\"#sendernotallowed\\\"};duplicate=1\",\"expected\":\"SenderNotAllowed -> #sendernotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"url\\\":\\\"#zeroaddressnotallowed\\\"};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed -> #zeroaddressnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=1\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=2\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=3\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI-encoded decimal places of the local token\\\"};duplicate=1\",\"expected\":\"ABI-encoded decimal places of the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adding new chains with rate limits\\\"};duplicate=1\",\"expected\":\"Adding new chains with rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new pool address for a remote chain.\\\"};duplicate=1\",\"expected\":\"Adds a new pool address for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListAdd for each successfully added address\\\"};duplicate=1\",\"expected\":\"AllowListAdd for each successfully added address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListRemove for each successfully removed address\\\"};duplicate=1\",\"expected\":\"AllowListRemove for each successfully removed address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlist is enabled\\\"};duplicate=1\",\"expected\":\"Allowlist is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows multiple pools per chain for upgrades\\\"};duplicate=1\",\"expected\":\"Allows multiple pools per chain for upgrades\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows:\\\"};duplicate=1\",\"expected\":\"Allows:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apply updates to the allow list.\\\"};duplicate=1\",\"expected\":\"Apply updates to the allow list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to add to the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to add to the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to remove from the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to remove from the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of configured chain selectors\\\"};duplicate=1\",\"expected\":\"Array of configured chain selectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of encoded pool addresses on remote chain\\\"};duplicate=1\",\"expected\":\"Array of encoded pool addresses on remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP_POOL_V1\\\"};duplicate=1\",\"expected\":\"CCIP_POOL_V1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the local amount based on the remote amount and decimals.\\\"};duplicate=1\",\"expected\":\"Calculates the local amount based on the remote amount and decimals.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Callable by owner or rate limit admin. All array lengths must match.\\\"};duplicate=1\",\"expected\":\"Callable by owner or rate limit admin. All array lengths must match.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized offRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized onRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is registered as an offRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is registered as an offRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is the designated onRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is the designated onRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=1\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=2\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=1\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=2\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a chain is configured in the pool.\\\"};duplicate=1\",\"expected\":\"Checks if a chain is configured in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a given token is supported by this pool.\\\"};duplicate=1\",\"expected\":\"Checks if a given token is supported by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data for adding or updating a chain.\\\"};duplicate=1\",\"expected\":\"Configuration data for adding or updating a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration for each remote chain, including rate limits and token details.\\\"};duplicate=1\",\"expected\":\"Configuration for each remote chain, including rate limits and token details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=1\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=2\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the inbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the inbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the outbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the outbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data length is not 32 bytes (invalid ABI encoding)\\\"};duplicate=1\",\"expected\":\"Data length is not 32 bytes (invalid ABI encoding)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decoded value exceeds uint8 range\\\"};duplicate=1\",\"expected\":\"Decoded value exceeds uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=27\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=28\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=29\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=30\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=31\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=32\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=33\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=34\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=35\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=36\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=37\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=38\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=39\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=40\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=41\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=42\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=43\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=44\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=45\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=46\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits:\\\"};duplicate=1\",\"expected\":\"Emits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=3\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensure no inflight transactions exist before removal to prevent loss of funds.\\\"};duplicate=1\",\"expected\":\"Ensure no inflight transactions exist before removal to prevent loss of funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expects the data to be ABI-encoded uint256 that fits in uint8\\\"};duplicate=1\",\"expected\":\"Expects the data to be ABI-encoded uint256 that fits in uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\\\"};duplicate=1\",\"expected\":\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=1\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=2\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flag indicating if the pool uses access control.\\\"};duplicate=1\",\"expected\":\"Flag indicating if the pool uses access control.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the allowed addresses.\\\"};duplicate=1\",\"expected\":\"Gets the allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC165\\\"};duplicate=1\",\"expected\":\"IERC165\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=2\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IPoolV1\\\"};duplicate=1\",\"expected\":\"IPoolV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\\\"};duplicate=1\",\"expected\":\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is enabled, verifies sender is in s_allowlist\\\"};duplicate=1\",\"expected\":\"If allowlist is enabled, verifies sender is in s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial set of authorized addresses (if any)\\\"};duplicate=1\",\"expected\":\"Initial set of authorized addresses (if any)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes allowlist if provided\\\"};duplicate=1\",\"expected\":\"Initializes allowlist if provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal configuration for a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal configuration for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\\\"};duplicate=1\",\"expected\":\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for incoming transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for incoming transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for outgoing transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for outgoing transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to decode the decimal configuration received from a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal function to decode the decimal configuration received from a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to encode the local token's decimals for cross-chain communication.\\\"};duplicate=1\",\"expected\":\"Internal function to encode the local token's decimals for cross-chain communication.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to update rate limit configuration for a chain.\\\"};duplicate=1\",\"expected\":\"Internal function to update rate limit configuration for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate lock or burn operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate lock or burn operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate release or mint operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate release or mint operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to verify if a sender is authorized when allowlist is enabled.\\\"};duplicate=1\",\"expected\":\"Internal function to verify if a sender is authorized when allowlist is enabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\\\"};duplicate=1\",\"expected\":\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maps hashed pool addresses to their original form for verification.\\\"};duplicate=1\",\"expected\":\"Maps hashed pool addresses to their original form for verification.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=33\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=34\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=27\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=28\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=29\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=30\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=31\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\\\"};duplicate=1\",\"expected\":\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\\\"};duplicate=1\",\"expected\":\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner\\\"};duplicate=1\",\"expected\":\"Only callable by owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the contract owner. Emits\\\"};duplicate=1\",\"expected\":\"Only callable by the contract owner. Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=20\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=21\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=22\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=23\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=24\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=25\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=26\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=27\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=28\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs access control validation based on the i_allowlistEnabled flag:\\\"};duplicate=1\",\"expected\":\"Performs access control validation based on the i_allowlistEnabled flag:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs initial setup:\\\"};duplicate=1\",\"expected\":\"Performs initial setup:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous pools remain valid for inflight messages\\\"};duplicate=1\",\"expected\":\"Previous pools remain valid for inflight messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=1\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=2\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for incoming transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for incoming transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for outgoing transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for outgoing transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=1\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=2\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=1\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=2\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=1\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=2\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a pool address from a remote chain's configuration.\\\"};duplicate=1\",\"expected\":\"Removes a pool address from a remote chain's configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removing existing chains\\\"};duplicate=1\",\"expected\":\"Removing existing chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=1\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=2\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all configured chain selectors.\\\"};duplicate=1\",\"expected\":\"Returns all configured chain selectors.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded address to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded address to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded addresses to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded addresses to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the Risk Management Network proxy address.\\\"};duplicate=1\",\"expected\":\"Returns the Risk Management Network proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the configured pool addresses for a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the configured pool addresses for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rate limit administrator address.\\\"};duplicate=1\",\"expected\":\"Returns the current rate limit administrator address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current router address.\\\"};duplicate=1\",\"expected\":\"Returns the current router address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of inbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of inbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of outbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of outbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"Returns the number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token address on a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the token address on a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token managed by this pool.\\\"};duplicate=1\",\"expected\":\"Returns the token managed by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns whether allowlist functionality is active.\\\"};duplicate=1\",\"expected\":\"Returns whether allowlist functionality is active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=10\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=11\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=12\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=13\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=14\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=15\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=16\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=17\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=18\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=7\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=8\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=9\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=1\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=2\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=2\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=3\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=4\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=2\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is allowlisted (if enabled)\\\"};duplicate=1\",\"expected\":\"Sender is allowlisted (if enabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is not in the allowlist\\\"};duplicate=1\",\"expected\":\"Sender is not in the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of addresses authorized to initiate cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of addresses authorized to initiate cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized chain selectors for cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of authorized chain selectors for cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"Sets the address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the chain rate limiter config.\\\"};duplicate=1\",\"expected\":\"Sets the chain rate limiter config.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up immutable contract references\\\"};duplicate=1\",\"expected\":\"Sets up immutable contract references\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool is valid\\\"};duplicate=1\",\"expected\":\"Source pool is valid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports the following interfaces:\\\"};duplicate=1\",\"expected\":\"Supports the following interfaces:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address.\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The RMN proxy contract address\\\"};duplicate=1\",\"expected\":\"The RMN proxy contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network (RMN) proxy address.\\\"};duplicate=1\",\"expected\":\"The Risk Management Network (RMN) proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network proxy address\\\"};duplicate=1\",\"expected\":\"The Risk Management Network proxy address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual number of decimals provided\\\"};duplicate=1\",\"expected\":\"The actual number of decimals provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"The address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the already existing pool\\\"};duplicate=1\",\"expected\":\"The address of the already existing pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the invalid token\\\"};duplicate=1\",\"expected\":\"The address of the invalid token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the pool to remove\\\"};duplicate=1\",\"expected\":\"The address of the pool to remove\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the remote pool (encoded to support non-EVM chains)\\\"};duplicate=1\",\"expected\":\"The address of the remote pool (encoded to support non-EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address that attempted the action\\\"};duplicate=1\",\"expected\":\"The address that attempted the action\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to check for permission\\\"};duplicate=1\",\"expected\":\"The address to check for permission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be added.\\\"};duplicate=1\",\"expected\":\"The addresses to be added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be removed.\\\"};duplicate=1\",\"expected\":\"The addresses to be removed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The allowed addresses.\\\"};duplicate=1\",\"expected\":\"The allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=1\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=2\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount on the remote chain.\\\"};duplicate=1\",\"expected\":\"The amount on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount that caused the overflow\\\"};duplicate=1\",\"expected\":\"The amount that caused the overflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector being queried\\\"};duplicate=1\",\"expected\":\"The chain selector being queried\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the destination chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the source chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to add the pool for\\\"};duplicate=1\",\"expected\":\"The chain selector to add the pool for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to configure\\\"};duplicate=1\",\"expected\":\"The chain selector to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=1\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=2\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to remove the pool from\\\"};duplicate=1\",\"expected\":\"The chain selector to remove the pool from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=1\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=2\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector where the pool exists\\\"};duplicate=1\",\"expected\":\"The chain selector where the pool exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selectors to configure\\\"};duplicate=1\",\"expected\":\"The chain selectors to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals of the token on the remote chain.\\\"};duplicate=1\",\"expected\":\"The decimals of the token on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the local chain\\\"};duplicate=1\",\"expected\":\"The decimals on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the remote chain\\\"};duplicate=1\",\"expected\":\"The decimals on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded decimal configuration data\\\"};duplicate=1\",\"expected\":\"The encoded decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded token address on the remote chain\\\"};duplicate=1\",\"expected\":\"The encoded token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of decimals\\\"};duplicate=1\",\"expected\":\"The expected number of decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid decimal configuration data\\\"};duplicate=1\",\"expected\":\"The invalid decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid pool address\\\"};duplicate=1\",\"expected\":\"The invalid pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The local amount.\\\"};duplicate=1\",\"expected\":\"The local amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new router contract address\\\"};duplicate=1\",\"expected\":\"The new router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimal places for the token\\\"};duplicate=1\",\"expected\":\"The number of decimal places for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"The number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used on the remote chain\\\"};duplicate=1\",\"expected\":\"The number of decimals used on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\\\"};duplicate=1\",\"expected\":\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address to verify\\\"};duplicate=1\",\"expected\":\"The pool address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=1\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=2\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=3\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain selector for which the rate limits apply.\\\"};duplicate=1\",\"expected\":\"The remote chain selector for which the rate limits apply.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The selector of the chain that already exists\\\"};duplicate=1\",\"expected\":\"The selector of the chain that already exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address to check\\\"};duplicate=1\",\"expected\":\"The token address to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract address\\\"};duplicate=1\",\"expected\":\"The token contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token managed by this pool. Currently supports one token per pool.\\\"};duplicate=1\",\"expected\":\"The token managed by this pool. Currently supports one token per pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to be managed by this pool\\\"};duplicate=1\",\"expected\":\"The token to be managed by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token's decimal places on this chain\\\"};duplicate=1\",\"expected\":\"The token's decimal places on this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\\\"};duplicate=1\",\"expected\":\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a caller lacks the required permissions for an operation.\\\"};duplicate=1\",\"expected\":\"Thrown when a caller lacks the required permissions for an operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\\\"};duplicate=1\",\"expected\":\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a token amount conversion would result in an arithmetic overflow.\\\"};duplicate=1\",\"expected\":\"Thrown when a token amount conversion would result in an arithmetic overflow.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\\\"};duplicate=1\",\"expected\":\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when array parameters have different lengths in multi-chain operations.\\\"};duplicate=1\",\"expected\":\"Thrown when array parameters have different lengths in multi-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a chain that is already configured.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a chain that is already configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a pool that is already configured for a chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a pool that is already configured for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to modify the allowlist when the feature is disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to modify the allowlist when the feature is disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with a token that is not supported by the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with a token that is not supported by the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with an unconfigured chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with an unconfigured chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use a chain that is not authorized.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use a chain that is not authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) for critical contract addresses.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) for critical contract addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unconfigured or invalid remote pool address.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unconfigured or invalid remote pool address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the Risk Management Network has flagged operations as unsafe.\\\"};duplicate=1\",\"expected\":\"Thrown when the Risk Management Network has flagged operations as unsafe.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when token decimals don't match the expected configuration.\\\"};duplicate=1\",\"expected\":\"Thrown when token decimals don't match the expected configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=1\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=2\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the chain is configured in the pool\\\"};duplicate=1\",\"expected\":\"True if the chain is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the contract implements the interface\\\"};duplicate=1\",\"expected\":\"True if the contract implements the interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool is configured for the chain\\\"};duplicate=1\",\"expected\":\"True if the pool is configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the token is supported by this pool\\\"};duplicate=1\",\"expected\":\"True if the token is supported by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=27\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=28\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=29\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=30\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=31\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=32\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=33\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=34\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=35\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=36\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=37\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=38\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=39\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=40\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=41\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=42\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=43\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=44\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=45\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=46\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates both inbound and outbound rate limits\\\"};duplicate=1\",\"expected\":\"Updates both inbound and outbound rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates chain configurations in bulk.\\\"};duplicate=1\",\"expected\":\"Updates chain configurations in bulk.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates rate limit configurations for multiple chains.\\\"};duplicate=1\",\"expected\":\"Updates rate limit configurations for multiple chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\\\"};duplicate=1\",\"expected\":\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the router contract address.\\\"};duplicate=1\",\"expected\":\"Updates the router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=1\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=2\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updating chain configurations Only callable by owner.\\\"};duplicate=1\",\"expected\":\"Updating chain configurations Only callable by owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\\\"};duplicate=1\",\"expected\":\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=1\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=2\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates both rate limit configurations\\\"};duplicate=1\",\"expected\":\"Validates both rate limit configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=1\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=2\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates non-zero addresses for token, router, and RMN proxy\\\"};duplicate=1\",\"expected\":\"Validates non-zero addresses for token, router, and RMN proxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the chain exists\\\"};duplicate=1\",\"expected\":\"Validates that the chain exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the decoded value is within uint8 range\\\"};duplicate=1\",\"expected\":\"Validates that the decoded value is within uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=1\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=2\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies if a pool address is configured for a remote chain.\\\"};duplicate=1\",\"expected\":\"Verifies if a pool address is configured for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies token decimals match if ERC20Metadata is supported\\\"};duplicate=1\",\"expected\":\"Verifies token decimals match if ERC20Metadata is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actual\\\"};duplicate=1\",\"expected\":\"actual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=2\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=3\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=4\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=5\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=6\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=1\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=2\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=4\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=5\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=9\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"caller\\\"};duplicate=1\",\"expected\":\"caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=1\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event.\\\"};duplicate=1\",\"expected\":\"event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"expected\\\"};duplicate=1\",\"expected\":\"expected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not an authorized offRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not an authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not the authorized onRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not the authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=1\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=2\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=3\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool address is empty\\\"};duplicate=1\",\"expected\":\"if the pool address is empty\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is already configured for this chain\\\"};duplicate=1\",\"expected\":\"if the pool is already configured for this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is not configured for the chain\\\"};duplicate=1\",\"expected\":\"if the pool is not configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=1\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=2\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=1\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=2\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfigs\\\"};duplicate=1\",\"expected\":\"inboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localDecimals\\\"};duplicate=1\",\"expected\":\"localDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRouter\\\"};duplicate=1\",\"expected\":\"newRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=1\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=2\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfigs\\\"};duplicate=1\",\"expected\":\"outboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Active rate limiter for sending tokens\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Active rate limiter for sending tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=1\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=2\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector: Chain identifier\\\"};duplicate=1\",\"expected\":\"remoteChainSelector: Chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=1\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=10\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=11\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=12\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=13\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=14\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=15\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=2\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=3\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=4\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=5\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=6\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=7\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=8\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=9\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelectors\\\"};duplicate=1\",\"expected\":\"remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=1\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=2\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=1\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=2\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=3\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=4\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=5\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddresses: List of authorized pool addresses on the remote chain\\\"};duplicate=1\",\"expected\":\"remotePoolAddresses: List of authorized pool addresses on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePools: Set of authorized pool addresses (stored as hashes)\\\"};duplicate=1\",\"expected\":\"remotePools: Set of authorized pool addresses (stored as hashes)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=1\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=2\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=1\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=2\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=1\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=2\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true is enabled, false if not.\\\"};duplicate=1\",\"expected\":\"true is enabled, false if not.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=1\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=2\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=13\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=14\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=15\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=3\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=4\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=5\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=6\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when successful.\\\"};duplicate=1\",\"expected\":\"when successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when the pool is successfully added.\\\"};duplicate=1\",\"expected\":\"when the pool is successfully added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.0/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You are viewing API documentation for CCIP v1.6.1, which is the latest version.\\\"};duplicate=1\",\"expected\":\"You are viewing API documentation for CCIP v1.6.1, which is the latest version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _lockOrBurn(uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _lockOrBurn(uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/token-pool#_lockorburn\\\"};duplicate=1\",\"expected\":\"_lockOrBurn -> /ccip/api-reference/evm/v1.6.1/token-pool#_lockorburn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier that specifies the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier that specifies the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the token's burnFrom(address(this), amount) function.\\\"};duplicate=1\",\"expected\":\"Calls the token's burnFrom(address(this), amount) function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\\\"};duplicate=1\",\"expected\":\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that implements the token burning logic for the BurnFromMintTokenPool.\\\"};duplicate=1\",\"expected\":\"Internal function that implements the token burning logic for the BurnFromMintTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overrides the virtual\\\"};duplicate=1\",\"expected\":\"Overrides the virtual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the specific \\\\\\\"burn\\\\\\\" implementation for the BurnFromMintTokenPool.\\\"};duplicate=1\",\"expected\":\"Provides the specific \\\"burn\\\" implementation for the BurnFromMintTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Relies on the token allowance set in the constructor to authorize the burn operation from the pool's own address.\\\"};duplicate=1\",\"expected\":\"Relies on the token allowance set in the constructor to authorize the burn operation from the pool's own address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the BurnFromMintTokenPool contract with initial configuration.\\\"};duplicate=1\",\"expected\":\"Sets up the BurnFromMintTokenPool contract with initial configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract identifier \\\\\\\"BurnFromMintTokenPool 1.6.1\\\\\\\"\\\"};duplicate=1\",\"expected\":\"The contract identifier \\\"BurnFromMintTokenPool 1.6.1\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to burn\\\"};duplicate=1\",\"expected\":\"The number of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the base TokenPool contract:\\\"};duplicate=1\",\"expected\":\"function from the base TokenPool contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-mint-erc20\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_ccipReceive\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the contract implements specific interfaces.\\\"};duplicate=1\",\"expected\":\"Determines whether the contract implements specific interfaces.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns false or reverts: only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If returns false or reverts: only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns true: tokens are transferred and ccipReceive is called atomically\\\"};duplicate=1\",\"expected\":\"If returns true: tokens are transferred and ccipReceive is called atomically\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection with CCIP-specific behavior:\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection with CCIP-specific behavior:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to be implemented by derived contracts for custom message handling.\\\"};duplicate=1\",\"expected\":\"Internal function to be implemented by derived contracts for custom message handling.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides access to the immutable router address used for message validation.\\\"};duplicate=1\",\"expected\":\"Provides access to the immutable router address used for message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\\\"};duplicate=1\",\"expected\":\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current CCIP router address\\\"};duplicate=1\",\"expected\":\"The current CCIP router address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used by CCIP to check if ccipReceive is available\\\"};duplicate=1\",\"expected\":\"Used by CCIP to check if ccipReceive is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\\\"};duplicate=1\",\"expected\":\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVMTokenAmount { address token; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct EVMTokenAmount { address token; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\\\"};duplicate=1\",\"expected\":\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\\\"};duplicate=1\",\"expected\":\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVMTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GENERIC_EXTRA_ARGS_V2_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GENERIC_EXTRA_ARGS_V2_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GenericExtraArgsV2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVMExtraArgsV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_ACCOUNT_BYTE_SIZE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_ACCOUNT_BYTE_SIZE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V1)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V1)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V2)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_svmArgsToBytes\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_svmArgsToBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMExtraArgsV1\\\",\\\"url\\\":\\\"#evmextraargsv1\\\"};duplicate=1\",\"expected\":\"EVMExtraArgsV1 -> #evmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> #genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"url\\\":\\\"#svmextraargsv1\\\"};duplicate=1\",\"expected\":\"SVMExtraArgsV1 -> #svmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the token receiver\\\"};duplicate=1\",\"expected\":\"Address of the token receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows specifying out-of-order execution preference\\\"};duplicate=1\",\"expected\":\"Allows specifying out-of-order execution preference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap indicating which accounts are writable\\\"};duplicate=1\",\"expected\":\"Bitmap indicating which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Changes to this struct require RMN maintainer notification\\\"};duplicate=1\",\"expected\":\"Changes to this struct require RMN maintainer notification\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\\\"};duplicate=1\",\"expected\":\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compute units for execution on Solana\\\"};duplicate=1\",\"expected\":\"Compute units for execution on Solana\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures compute units (Solana's equivalent to gas)\\\"};duplicate=1\",\"expected\":\"Configures compute units (Solana's equivalent to gas)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Controls message execution order\\\"};duplicate=1\",\"expected\":\"Controls message execution order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core structure for token transfers used by the Risk Management Network (RMN):\\\"};duplicate=1\",\"expected\":\"Core structure for token transfers used by the Risk Management Network (RMN):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default value for allowOutOfOrderExecution varies by chain\\\"};duplicate=1\",\"expected\":\"Default value for allowOutOfOrderExecution varies by chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines token receiver details\\\"};duplicate=1\",\"expected\":\"Defines token receiver details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes EVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes EVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes GenericExtraArgsV2 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes GenericExtraArgsV2 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes SVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes SVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enhanced version of extra arguments adding execution order control:\\\"};duplicate=1\",\"expected\":\"Enhanced version of extra arguments adding execution order control:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First version of extra arguments, supporting basic gas limit configuration.\\\"};duplicate=1\",\"expected\":\"First version of extra arguments, supporting basic gas limit configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit for execution on destination chain\\\"};duplicate=1\",\"expected\":\"Gas limit for execution on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Includes configurable gas limit\\\"};duplicate=1\",\"expected\":\"Includes configurable gas limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Lists additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Lists additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of overhead accounts needed for message execution on SVM.\\\"};duplicate=1\",\"expected\":\"Number of overhead accounts needed for message execution on SVM.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents token amounts in their chain-specific format\\\"};duplicate=1\",\"expected\":\"Represents token amounts in their chain-specific format\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Solana VM-specific arguments for cross-chain messages:\\\"};duplicate=1\",\"expected\":\"Solana VM-specific arguments for cross-chain messages:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Some chains enforce specific values and will revert if not set correctly\\\"};duplicate=1\",\"expected\":\"Some chains enforce specific values and will revert if not set correctly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifies which accounts are writable\\\"};duplicate=1\",\"expected\":\"Specifies which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V1 extra arguments specific to Solana VM-based chains.\\\"};duplicate=1\",\"expected\":\"Structure for V1 extra arguments specific to Solana VM-based chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V2 extra arguments in cross-chain messages.\\\"};duplicate=1\",\"expected\":\"Structure for V2 extra arguments in cross-chain messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token amounts in CCIP messages.\\\"};duplicate=1\",\"expected\":\"Structure representing token amounts in CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SVM extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The SVM extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V1 extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V1 extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V2 generic extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V2 generic extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=1\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=2\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\\\"};duplicate=1\",\"expected\":\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for Solana VM extra arguments.\\\"};duplicate=1\",\"expected\":\"The identifier tag for Solana VM extra arguments.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\\\\\"CCIP EVMExtraArgsV1\\\\\\\"))).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\"CCIP EVMExtraArgsV1\\\"))).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maximum number of accounts that can be passed in SVMExtraArgs.\\\"};duplicate=1\",\"expected\":\"The maximum number of accounts that can be passed in SVMExtraArgs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The size of each SVM account address in bytes.\\\"};duplicate=1\",\"expected\":\"The size of each SVM account address in bytes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address on the local chain\\\"};duplicate=1\",\"expected\":\"Token address on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=1\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=2\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accounts\\\"};duplicate=1\",\"expected\":\"accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=1\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=2\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=1\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=1\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"computeUnits\\\"};duplicate=1\",\"expected\":\"computeUnits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=2\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenReceiver\\\"};duplicate=1\",\"expected\":\"tokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=1\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=2\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=3\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=4\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=5\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=6\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=7\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=1\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=2\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=3\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=4\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=5\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DestinationChainNotEnabled(uint64 destChainSelector);\\\"};duplicate=1\",\"expected\":\"error DestinationChainNotEnabled(uint64 destChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ExtraArgOutOfOrderExecutionMustBeTrue();\\\"};duplicate=1\",\"expected\":\"error ExtraArgOutOfOrderExecutionMustBeTrue();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error FeeTokenNotSupported(address token);\\\"};duplicate=1\",\"expected\":\"error FeeTokenNotSupported(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\\\"};duplicate=1\",\"expected\":\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsData();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsData();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsTag();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsTag();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\\\"};duplicate=1\",\"expected\":\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenReceiver();\\\"};duplicate=1\",\"expected\":\"error InvalidTokenReceiver();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageComputeUnitLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageComputeUnitLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\\\"};duplicate=1\",\"expected\":\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageGasLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageGasLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\\\"};duplicate=1\",\"expected\":\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\\\"};duplicate=1\",\"expected\":\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\\\"};duplicate=1\",\"expected\":\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\\\"};duplicate=1\",\"expected\":\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function convertTokenAmount( address fromToken, uint256 fromTokenAmount, address toToken ) external view returns (uint256);\\\"};duplicate=1\",\"expected\":\"function convertTokenAmount( address fromToken, uint256 fromTokenAmount, address toToken ) external view returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getDestChainConfig( uint64 destChainSelector ) external view returns (DestChainConfig memory);\\\"};duplicate=1\",\"expected\":\"function getDestChainConfig( uint64 destChainSelector ) external view returns (DestChainConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getFeeTokens() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getFeeTokens() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getStaticConfig() external view returns (StaticConfig memory);\\\"};duplicate=1\",\"expected\":\"function getStaticConfig() external view returns (StaticConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenTransferFeeConfig( uint64 destChainSelector, address token ) external view returns (TokenTransferFeeConfig memory);\\\"};duplicate=1\",\"expected\":\"function getTokenTransferFeeConfig( uint64 destChainSelector, address token ) external view returns (TokenTransferFeeConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getValidatedFee( uint64 destChainSelector, Client.EVM2AnyMessage calldata message ) external view returns (uint256);\\\"};duplicate=1\",\"expected\":\"function getValidatedFee( uint64 destChainSelector, Client.EVM2AnyMessage calldata message ) external view returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant typeAndVersion = \\\\\\\"FeeQuoter 1.6.1\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant typeAndVersion = \\\"FeeQuoter 1.6.1\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\\\"};duplicate=1\",\"expected\":\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\\\"};duplicate=1\",\"expected\":\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant FEE_BASE_DECIMALS = 36;\\\"};duplicate=1\",\"expected\":\"uint256 public constant FEE_BASE_DECIMALS = 36;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestinationChainNotEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestinationChainNotEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExtraArgOutOfOrderExecutionMustBeTrue\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExtraArgOutOfOrderExecutionMustBeTrue\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FEE_BASE_DECIMALS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FEE_BASE_DECIMALS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenNotSupported\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenNotSupported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidChainFamilySelector\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidChainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsTag\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsTag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSVMExtraArgsWritableBitmap\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSVMExtraArgsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenReceiver\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageComputeUnitLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageComputeUnitLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageFeeTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageFeeTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageGasLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageGasLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageTooLarge\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageTooLarge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaleGasPrice\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaleGasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySVMExtraArgsAccounts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySVMExtraArgsAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UnsupportedNumberOfTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UnsupportedNumberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"convertTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"convertTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getDestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getDestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getFeeTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getFeeTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getStaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getStaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getValidatedFee\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getValidatedFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=2\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=3\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=4\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Internal library\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/internal#chain_family_selector_evm\\\"};duplicate=1\",\"expected\":\"Internal library -> /ccip/api-reference/evm/v1.6.1/internal#chain_family_selector_evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig.maxFeeJuelsPerMsg\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig.maxFeeJuelsPerMsg -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=2\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"chainFamilySelector\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/internal#chain_family_selector_evm\\\"};duplicate=1\",\"expected\":\"chainFamilySelector -> /ccip/api-reference/evm/v1.6.1/internal#chain_family_selector_evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getDestChainConfig\\\",\\\"url\\\":\\\"#getdestchainconfig\\\"};duplicate=1\",\"expected\":\"getDestChainConfig -> #getdestchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getStaticConfig\\\",\\\"url\\\":\\\"#getstaticconfig\\\"};duplicate=1\",\"expected\":\"getStaticConfig -> #getstaticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\").\\\"};duplicate=1\",\"expected\":\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Actual message size that was too large\\\"};duplicate=1\",\"expected\":\"Actual message size that was too large\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of fee token addresses\\\"};duplicate=1\",\"expected\":\"Array of fee token addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Basis points charged on token transfers, multiples of 0.1bps, or 1e-5\\\"};duplicate=1\",\"expected\":\"Basis points charged on token transfers, multiples of 0.1bps, or 1e-5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated message fee in Juels\\\"};duplicate=1\",\"expected\":\"Calculated message fee in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates and validates the fee for a CCIP message.\\\"};duplicate=1\",\"expected\":\"Calculates and validates the fee for a CCIP message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client.EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Client.EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains fee & validation configs for a destination chain. Retrieved via\\\"};duplicate=1\",\"expected\":\"Contains fee & validation configs for a destination chain. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains immutable configuration values set at contract deployment. Retrieved via\\\"};duplicate=1\",\"expected\":\"Contains immutable configuration values set at contract deployment. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a token amount from the token's decimals to a fee-denominated amount.\\\"};duplicate=1\",\"expected\":\"Converts a token amount from the token's decimals to a fee-denominated amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability bytes returned from source pool, must be >= Pool.CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\"};duplicate=1\",\"expected\":\"Data availability bytes returned from source pool, must be >= Pool.CCIP_LOCK_OR_BURN_V1_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability gas charged for overhead costs (e.g., OCR)\\\"};duplicate=1\",\"expected\":\"Data availability gas charged for overhead costs (e.g., OCR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default dest-chain gas charged per byte of data payload\\\"};duplicate=1\",\"expected\":\"Default dest-chain gas charged per byte of data payload\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged to execute a token transfer on the destination chain\\\"};duplicate=1\",\"expected\":\"Default gas charged to execute a token transfer on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas limit for a tx\\\"};duplicate=1\",\"expected\":\"Default gas limit for a tx\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default token fee charged per token transfer\\\"};duplicate=1\",\"expected\":\"Default token fee charged per token transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flat network fee to charge for messages, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Flat network fee to charge for messages, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged on top of the gasLimit to cover destination chain costs\\\"};duplicate=1\",\"expected\":\"Gas charged on top of the gasLimit to cover destination chain costs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged to execute the token transfer on the destination chain\\\"};duplicate=1\",\"expected\":\"Gas charged to execute the token transfer on the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas units charged per byte of message data requiring availability\\\"};duplicate=1\",\"expected\":\"Gas units charged per byte of message data requiring availability\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"High dest-chain gas charged per byte of data payload (for EIP-7623)\\\"};duplicate=1\",\"expected\":\"High dest-chain gas charged per byte of data payload (for EIP-7623)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK token address\\\"};duplicate=1\",\"expected\":\"LINK token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed fee in Juels per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed fee in Juels per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed message size\\\"};duplicate=1\",\"expected\":\"Maximum allowed message size\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of accounts\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of tokens per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of tokens per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum data payload size in bytes\\\"};duplicate=1\",\"expected\":\"Maximum data payload size in bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee that can be charged for a message\\\"};duplicate=1\",\"expected\":\"Maximum fee that can be charged for a message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee to charge per token transfer, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Maximum fee to charge per token transfer, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum gas limit for messages targeting EVMs\\\"};duplicate=1\",\"expected\":\"Maximum gas limit for messages targeting EVMs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum number of distinct ERC20 tokens transferred per message\\\"};duplicate=1\",\"expected\":\"Maximum number of distinct ERC20 tokens transferred per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum fee to charge per token transfer, multiples of 0.01 USD\\\"};duplicate=1\",\"expected\":\"Minimum fee to charge per token transfer, multiples of 0.01 USD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for data availability gas, multiples of bps (0.0001)\\\"};duplicate=1\",\"expected\":\"Multiplier for data availability gas, multiples of bps (0.0001)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for gas costs, 1e18 based (e.g., 11e17 = 10% extra cost)\\\"};duplicate=1\",\"expected\":\"Multiplier for gas costs, 1e18 based (e.g., 11e17 = 10% extra cost)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts in the extra args\\\"};duplicate=1\",\"expected\":\"Number of accounts in the extra args\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts provided\\\"};duplicate=1\",\"expected\":\"Number of accounts provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of tokens in the message\\\"};duplicate=1\",\"expected\":\"Number of tokens in the message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Referenced in\\\"};duplicate=1\",\"expected\":\"Referenced in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the complete\\\"};duplicate=1\",\"expected\":\"Retrieves the complete\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the immutable\\\"};duplicate=1\",\"expected\":\"Retrieves the immutable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the contract type and version identifier.\\\"};duplicate=1\",\"expected\":\"Returns the contract type and version identifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the custom\\\"};duplicate=1\",\"expected\":\"Returns the custom\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the destination chain configuration for a given chain selector.\\\"};duplicate=1\",\"expected\":\"Returns the destination chain configuration for a given chain selector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the list of tokens that can be used to pay fees.\\\"};duplicate=1\",\"expected\":\"Returns the list of tokens that can be used to pay fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the static configuration of the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"Returns the static configuration of the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token transfer fee configuration for a specific token and destination chain.\\\"};duplicate=1\",\"expected\":\"Returns the token transfer fee configuration for a specific token and destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Selector identifying the destination chain's family (see\\\"};duplicate=1\",\"expected\":\"Selector identifying the destination chain's family (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing all configuration for a destination chain.\\\"};duplicate=1\",\"expected\":\"Structure containing all configuration for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing the static configuration of the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"Structure containing the static configuration of the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure defining the fee configuration for token transfers.\\\"};duplicate=1\",\"expected\":\"Structure defining the fee configuration for token transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP message to calculate fee for\\\"};duplicate=1\",\"expected\":\"The CCIP message to calculate fee for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of fromToken to convert\\\"};duplicate=1\",\"expected\":\"The amount of fromToken to convert\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The base decimals for cost calculations.\\\"};duplicate=1\",\"expected\":\"The base decimals for cost calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain configuration\\\"};duplicate=1\",\"expected\":\"The destination chain configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=1\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=2\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=3\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=4\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The disabled destination chain selector\\\"};duplicate=1\",\"expected\":\"The disabled destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The equivalent amount in toToken\\\"};duplicate=1\",\"expected\":\"The equivalent amount in toToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid chain family selector\\\"};duplicate=1\",\"expected\":\"The invalid chain family selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The provided writable bitmap\\\"};duplicate=1\",\"expected\":\"The provided writable bitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The staleness threshold in seconds\\\"};duplicate=1\",\"expected\":\"The staleness threshold in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The time passed since last update in seconds\\\"};duplicate=1\",\"expected\":\"The time passed since last update in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address\\\"};duplicate=1\",\"expected\":\"The token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to convert from\\\"};duplicate=1\",\"expected\":\"The token to convert from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to convert to\\\"};duplicate=1\",\"expected\":\"The token to convert to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token transfer fee configuration\\\"};duplicate=1\",\"expected\":\"The token transfer fee configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The total fee in the smallest unit of the fee token\\\"};duplicate=1\",\"expected\":\"The total fee in the smallest unit of the fee token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported fee token address\\\"};duplicate=1\",\"expected\":\"The unsupported fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported token address\\\"};duplicate=1\",\"expected\":\"The unsupported token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The value at which billing switches from base to high rate\\\"};duplicate=1\",\"expected\":\"The value at which billing switches from base to high rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function converts token amounts based on their relative prices and decimals. Used for calculating fees when tokens with different decimal places are involved.\\\"};duplicate=1\",\"expected\":\"This function converts token amounts based on their relative prices and decimals. Used for calculating fees when tokens with different decimal places are involved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This is the primary function for fee calculation. It validates the message and destination chain, then calculates the total fee including execution costs, data availability costs, and token transfer fees.\\\"};duplicate=1\",\"expected\":\"This is the primary function for fee calculation. It validates the message and destination chain, then calculates the total fee including execution costs, data availability costs, and token transfer fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\\\"};duplicate=1\",\"expected\":\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to get the price or fee for an unsupported token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to get the price or fee for an unsupported token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to send a message to a disabled destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to send a message to a disabled destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unsupported token for fee payment.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unsupported token for fee payment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when extra args data is missing or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when extra args data is missing or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\\\"};duplicate=1\",\"expected\":\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\\\"};duplicate=1\",\"expected\":\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the destination chain's\\\"};duplicate=1\",\"expected\":\"Thrown when the destination chain's\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the extra args tag is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"Thrown when the extra args tag is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the gas price for a destination chain is stale.\\\"};duplicate=1\",\"expected\":\"Thrown when the gas price for a destination chain is stale.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\\\"};duplicate=1\",\"expected\":\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message data payload exceeds the maximum allowed size.\\\"};duplicate=1\",\"expected\":\"Thrown when the message data payload exceeds the maximum allowed size.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the number of tokens in a message exceeds the maximum allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when the number of tokens in a message exceeds the maximum allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\\\"};duplicate=1\",\"expected\":\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many accounts are specified in SVM (Solana) extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many accounts are specified in SVM (Solana) extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds a gas price can be stale before invalid (0 means disabled)\\\"};duplicate=1\",\"expected\":\"Time in seconds a gas price can be stale before invalid (0 means disabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds a token price can be stale before invalid\\\"};duplicate=1\",\"expected\":\"Time in seconds a token price can be stale before invalid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this destination chain is enabled\\\"};duplicate=1\",\"expected\":\"Whether this destination chain is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this token has custom transfer fees\\\"};duplicate=1\",\"expected\":\"Whether this token has custom transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether to enforce allowOutOfOrderExecution extraArg to be true\\\"};duplicate=1\",\"expected\":\"Whether to enforce allowOutOfOrderExecution extraArg to be true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actualSize\\\"};duplicate=1\",\"expected\":\"actualSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=2\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=1\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=2\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"containing all fee and validation parameters for the destination chain.\\\"};duplicate=1\",\"expected\":\"containing all fee and validation parameters for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"deciBps\\\"};duplicate=1\",\"expected\":\"deciBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenDestGasOverhead\\\"};duplicate=1\",\"expected\":\"defaultTokenDestGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenFeeUSDCents\\\"};duplicate=1\",\"expected\":\"defaultTokenFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTxGasLimit\\\"};duplicate=1\",\"expected\":\"defaultTxGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destBytesOverhead\\\"};duplicate=1\",\"expected\":\"destBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=3\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=4\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=5\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityMultiplierBps\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityMultiplierBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityOverheadGas\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityOverheadGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=1\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=2\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerDataAvailabilityByte\\\"};duplicate=1\",\"expected\":\"destGasPerDataAvailabilityByte\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteBase\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteBase\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteHigh\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteThreshold\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"enforceOutOfOrder\\\"};duplicate=1\",\"expected\":\"enforceOutOfOrder\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a token if set, otherwise returns the default configuration from\\\"};duplicate=1\",\"expected\":\"for a token if set, otherwise returns the default configuration from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for default values and can be set per-token via applyTokenTransferFeeConfigUpdates.\\\"};duplicate=1\",\"expected\":\"for default values and can be set per-token via applyTokenTransferFeeConfigUpdates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromTokenAmount\\\"};duplicate=1\",\"expected\":\"fromTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromToken\\\"};duplicate=1\",\"expected\":\"fromToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasMultiplierWeiPerEth\\\"};duplicate=1\",\"expected\":\"gasMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"gasPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=1\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=2\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"linkToken\\\"};duplicate=1\",\"expected\":\"linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxAccounts\\\"};duplicate=1\",\"expected\":\"maxAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxDataBytes\\\"};duplicate=1\",\"expected\":\"maxDataBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=1\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=2\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeUSDCents\\\"};duplicate=1\",\"expected\":\"maxFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=1\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=2\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxPerMsgGasLimit\\\"};duplicate=1\",\"expected\":\"maxPerMsgGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSize\\\"};duplicate=1\",\"expected\":\"maxSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=1\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minFeeUSDCents\\\"};duplicate=1\",\"expected\":\"minFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"msgFeeJuels\\\"};duplicate=1\",\"expected\":\"msgFeeJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkFeeUSDCents\\\"};duplicate=1\",\"expected\":\"networkFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=1\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=2\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numberOfTokens\\\"};duplicate=1\",\"expected\":\"numberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"threshold\\\"};duplicate=1\",\"expected\":\"threshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timePassed\\\"};duplicate=1\",\"expected\":\"timePassed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"toToken\\\"};duplicate=1\",\"expected\":\"toToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"tokenPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=1\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=2\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=3\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=4\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=5\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=6\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=10\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=11\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=12\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=13\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=14\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=10\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=11\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=12\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=13\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=4\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=5\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=6\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=7\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=8\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=9\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint96\\\"};duplicate=1\",\"expected\":\"uint96\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"values set at contract deployment.\\\"};duplicate=1\",\"expected\":\"values set at contract deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if the given chain ID is supported for sending/receiving.\\\"};duplicate=1\",\"expected\":\"Checks if the given chain ID is supported for sending/receiving.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/i-type-and-version\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for Aptos chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector APTOS\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for Aptos chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector APTOS\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for EVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector EVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for EVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector EVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for SUI chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SUI\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for SUI chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SUI\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for SVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for SVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for TVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamiliySelector TVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for TVM chains: bytes4(keccak256(\\\"CCIP ChainFamiliySelector TVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rebalancer;\\\"};duplicate=1\",\"expected\":\"address internal s_rebalancer;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InsufficientLiquidity();\\\"};duplicate=1\",\"expected\":\"error InsufficientLiquidity();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event LiquidityAdded(address indexed provider, uint256 indexed amount);\\\"};duplicate=1\",\"expected\":\"event LiquidityAdded(address indexed provider, uint256 indexed amount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event LiquidityRemoved(address indexed provider, uint256 indexed amount);\\\"};duplicate=1\",\"expected\":\"event LiquidityRemoved(address indexed provider, uint256 indexed amount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RebalancerSet(address oldRebalancer, address newRebalancer);\\\"};duplicate=1\",\"expected\":\"event RebalancerSet(address oldRebalancer, address newRebalancer);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _releaseOrMint(address receiver, uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _releaseOrMint(address receiver, uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRebalancer() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRebalancer() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function provideLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function provideLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRebalancer(address rebalancer) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRebalancer(address rebalancer) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function withdrawLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function withdrawLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant override typeAndVersion = \\\\\\\"LockReleaseTokenPool 1.6.1\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant override typeAndVersion = \\\"LockReleaseTokenPool 1.6.1\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InsufficientLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InsufficientLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LiquidityAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LiquidityAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LiquidityRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LiquidityRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RebalancerSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RebalancerSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"provideLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"provideLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"withdrawLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"withdrawLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/token-pool#_releaseormint\\\"};duplicate=1\",\"expected\":\"_releaseOrMint -> /ccip/api-reference/evm/v1.6.1/token-pool#_releaseormint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"provideLiquidity\\\",\\\"url\\\":\\\"#provideliquidity\\\"};duplicate=1\",\"expected\":\"provideLiquidity -> #provideliquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"url\\\":\\\"#setrebalancer\\\"};duplicate=1\",\"expected\":\"setRebalancer -> #setrebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"withdrawLiquidity\\\",\\\"url\\\":\\\"#withdrawliquidity\\\"};duplicate=1\",\"expected\":\"withdrawLiquidity -> #withdrawliquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier specifying the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier specifying the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the RMN proxy contract\\\"};duplicate=1\",\"expected\":\"Address of the RMN proxy contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the router contract\\\"};duplicate=1\",\"expected\":\"Address of the router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds external liquidity to the pool.\\\"};duplicate=1\",\"expected\":\"Adds external liquidity to the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the owner to update the liquidity manager (rebalancer) address.\\\"};duplicate=1\",\"expected\":\"Allows the owner to update the liquidity manager (rebalancer) address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to add liquidity to the pool:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to add liquidity to the pool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to withdraw liquidity:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to withdraw liquidity:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can be used in conjunction with TokenAdminRegistry updates\\\"};duplicate=1\",\"expected\":\"Can be used in conjunction with TokenAdminRegistry updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures decimal precision for local tokens\\\"};duplicate=1\",\"expected\":\"Configures decimal precision for local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is added to the pool via\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is added to the pool via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is removed from the pool via\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is removed from the pool via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is transferred from an older pool version during an upgrade.\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is transferred from an older pool version during an upgrade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rebalancer (liquidity manager) address is updated via\\\"};duplicate=1\",\"expected\":\"Emitted when the rebalancer (liquidity manager) address is updated via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enables smooth transition of liquidity and transactions\\\"};duplicate=1\",\"expected\":\"Enables smooth transition of liquidity and transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Establishes the initial whitelist\\\"};duplicate=1\",\"expected\":\"Establishes the initial whitelist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Facilitates pool upgrades by transferring liquidity from an older pool version:\\\"};duplicate=1\",\"expected\":\"Facilitates pool upgrades by transferring liquidity from an older pool version:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=3\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=4\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial list of authorized addresses\\\"};duplicate=1\",\"expected\":\"Initial list of authorized addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the token pool with its configuration parameters:\\\"};duplicate=1\",\"expected\":\"Initializes the token pool with its configuration parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that implements the token release logic for a LockReleaseTokenPool.\\\"};duplicate=1\",\"expected\":\"Internal function that implements the token release logic for a LockReleaseTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Links to the RMN proxy and router\\\"};duplicate=1\",\"expected\":\"Links to the RMN proxy and router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=3\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=1\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=2\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only works if the pool accepts liquidity\\\"};duplicate=1\",\"expected\":\"Only works if the pool accepts liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overrides the virtual\\\"};duplicate=1\",\"expected\":\"Overrides the virtual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\\\"};duplicate=1\",\"expected\":\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the specific \\\\\\\"release\\\\\\\" implementation for the LockReleaseTokenPool.\\\"};duplicate=1\",\"expected\":\"Provides the specific \\\"release\\\" implementation for the LockReleaseTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes liquidity from the pool.\\\"};duplicate=1\",\"expected\":\"Removes liquidity from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires prior token approval\\\"};duplicate=1\",\"expected\":\"Requires prior token approval\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires sufficient pool balance\\\"};duplicate=1\",\"expected\":\"Requires sufficient pool balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires this pool to be set as rebalancer in the source pool\\\"};duplicate=1\",\"expected\":\"Requires this pool to be set as rebalancer in the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rebalancer address.\\\"};duplicate=1\",\"expected\":\"Returns the current rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the token contract reference\\\"};duplicate=1\",\"expected\":\"Sets up the token contract reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports both atomic and gradual migration strategies\\\"};duplicate=1\",\"expected\":\"Supports both atomic and gradual migration strategies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\\\"};duplicate=1\",\"expected\":\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the new rebalancer\\\"};duplicate=1\",\"expected\":\"The address of the new rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the previous rebalancer\\\"};duplicate=1\",\"expected\":\"The address of the previous rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the source pool\\\"};duplicate=1\",\"expected\":\"The address of the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address providing the liquidity\\\"};duplicate=1\",\"expected\":\"The address providing the liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to receive the tokens\\\"};duplicate=1\",\"expected\":\"The address to receive the tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address withdrawing the liquidity\\\"};duplicate=1\",\"expected\":\"The address withdrawing the liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity added to pool\\\"};duplicate=1\",\"expected\":\"The amount of liquidity added to pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity removed from pool\\\"};duplicate=1\",\"expected\":\"The amount of liquidity removed from pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to provide\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to provide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to transfer\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity transferred\\\"};duplicate=1\",\"expected\":\"The amount of liquidity transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current liquidity manager address\\\"};duplicate=1\",\"expected\":\"The current liquidity manager address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimal precision for the local token\\\"};duplicate=1\",\"expected\":\"The decimal precision for the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new rebalancer address to set\\\"};duplicate=1\",\"expected\":\"The new rebalancer address to set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to release\\\"};duplicate=1\",\"expected\":\"The number of tokens to release\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address\\\"};duplicate=1\",\"expected\":\"The source pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to manage\\\"};duplicate=1\",\"expected\":\"The token contract to manage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to withdraw more liquidity than available in the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to withdraw more liquidity than available in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers liquidity from an older pool version.\\\"};duplicate=1\",\"expected\":\"Transfers liquidity from an older pool version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens directly to the caller\\\"};duplicate=1\",\"expected\":\"Transfers tokens directly to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rebalancer address.\\\"};duplicate=1\",\"expected\":\"Updates the rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses safeTransfer to send the specified amount of tokens to the receiver.\\\"};duplicate=1\",\"expected\":\"Uses safeTransfer to send the specified amount of tokens to the receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=3\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=4\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=5\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the base TokenPool contract:\\\"};duplicate=1\",\"expected\":\"function from the base TokenPool contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRebalancer\\\"};duplicate=1\",\"expected\":\"newRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"oldRebalancer\\\"};duplicate=1\",\"expected\":\"oldRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"provider\\\"};duplicate=1\",\"expected\":\"provider\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"provider\\\"};duplicate=2\",\"expected\":\"provider\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rebalancer\\\"};duplicate=1\",\"expected\":\"rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_owner;\\\"};duplicate=1\",\"expected\":\"address private s_owner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_pendingOwner;\\\"};duplicate=1\",\"expected\":\"address private s_pendingOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address newOwner, address pendingOwner);\\\"};duplicate=1\",\"expected\":\"constructor(address newOwner, address pendingOwner);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CannotTransferToSelf();\\\"};duplicate=1\",\"expected\":\"error CannotTransferToSelf();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MustBeProposedOwner();\\\"};duplicate=1\",\"expected\":\"error MustBeProposedOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OwnerCannotBeZero();\\\"};duplicate=1\",\"expected\":\"error OwnerCannotBeZero();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event OwnershipTransferred(address indexed from, address indexed to);\\\"};duplicate=1\",\"expected\":\"event OwnershipTransferred(address indexed from, address indexed to);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function acceptOwnership() external override;\\\"};duplicate=1\",\"expected\":\"function acceptOwnership() external override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function owner() public view override returns (address);\\\"};duplicate=1\",\"expected\":\"function owner() public view override returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferOwnership(address to) public override onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferOwnership(address to) public override onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"modifier onlyOwner();\\\"};duplicate=1\",\"expected\":\"modifier onlyOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CannotTransferToSelf\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CannotTransferToSelf\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MustBeProposedOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MustBeProposedOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnerCannotBeZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnerCannotBeZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnershipTransferred\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnershipTransferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"acceptOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"acceptOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"onlyOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"onlyOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_pendingOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an owner to begin transferring ownership to a new address.\\\"};duplicate=1\",\"expected\":\"Allows an owner to begin transferring ownership to a new address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an ownership transfer to be completed by the recipient.\\\"};duplicate=1\",\"expected\":\"Allows an ownership transfer to be completed by the recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CannotTransferToSelf if attempting to transfer to current owner\\\"};duplicate=1\",\"expected\":\"CannotTransferToSelf if attempting to transfer to current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clears pending owner\\\"};duplicate=1\",\"expected\":\"Clears pending owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current owner initiating the transfer\\\"};duplicate=1\",\"expected\":\"Current owner initiating the transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits OwnershipTransferred event\\\"};duplicate=1\",\"expected\":\"Emits OwnershipTransferred event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an ownership transfer is completed.\\\"};duplicate=1\",\"expected\":\"Emitted when an ownership transfer is completed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the current owner initiates an ownership transfer.\\\"};duplicate=1\",\"expected\":\"Emitted when the current owner initiates an ownership transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\\\"};duplicate=1\",\"expected\":\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with an owner and optionally a pending owner.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with an owner and optionally a pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Modifier that restricts function access to the contract owner.\\\"};duplicate=1\",\"expected\":\"Modifier that restricts function access to the contract owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"New owner\\\"};duplicate=1\",\"expected\":\"New owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnlyCallableByOwner if caller is not the current owner\\\"};duplicate=1\",\"expected\":\"OnlyCallableByOwner if caller is not the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional address to initiate ownership transfer to\\\"};duplicate=1\",\"expected\":\"Optional address to initiate ownership transfer to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous owner\\\"};duplicate=1\",\"expected\":\"Previous owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposed new owner\\\"};duplicate=1\",\"expected\":\"Proposed new owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current owner's address.\\\"};duplicate=1\",\"expected\":\"Returns the current owner's address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with MustBeProposedOwner if caller is not the pending owner.\\\"};duplicate=1\",\"expected\":\"Reverts with MustBeProposedOwner if caller is not the pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OwnerCannotBeZero if newOwner is address(0)\\\"};duplicate=1\",\"expected\":\"Reverts with OwnerCannotBeZero if newOwner is address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets newOwner as the initial owner\\\"};duplicate=1\",\"expected\":\"Sets newOwner as the initial owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current owner\\\"};duplicate=1\",\"expected\":\"The address of the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The initial owner of the contract\\\"};duplicate=1\",\"expected\":\"The initial owner of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\\\"};duplicate=1\",\"expected\":\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the current owner of the contract.\\\"};duplicate=1\",\"expected\":\"The owner is the current owner of the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\\\"};duplicate=1\",\"expected\":\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pending owner is the address to which ownership may be transferred.\\\"};duplicate=1\",\"expected\":\"The pending owner is the address to which ownership may be transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by someone other than the owner.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by someone other than the owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set the owner to address(0).\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set the owner to address(0).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to transfer ownership to the current owner.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to transfer ownership to the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when someone other than the pending owner tries to accept ownership.\\\"};duplicate=1\",\"expected\":\"Thrown when someone other than the pending owner tries to accept ownership.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates owner to the caller\\\"};duplicate=1\",\"expected\":\"Updates owner to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When successful:\\\"};duplicate=1\",\"expected\":\"When successful:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=2\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newOwner\\\"};duplicate=1\",\"expected\":\"newOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pendingOwner\\\"};duplicate=1\",\"expected\":\"pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=2\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/ownable-2-step-msg-sender\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\\\"};duplicate=1\",\"expected\":\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\\\"};duplicate=1\",\"expected\":\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error BucketOverfilled();\\\"};duplicate=1\",\"expected\":\"error BucketOverfilled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DisabledNonZeroRateLimit(Config config);\\\"};duplicate=1\",\"expected\":\"error DisabledNonZeroRateLimit(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRateLimitRate(Config rateLimiterConfig);\\\"};duplicate=1\",\"expected\":\"error InvalidRateLimitRate(Config rateLimiterConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByAdminOrOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByAdminOrOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error RateLimitMustBeDisabled();\\\"};duplicate=1\",\"expected\":\"error RateLimitMustBeDisabled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event ConfigChanged(Config config);\\\"};duplicate=1\",\"expected\":\"event ConfigChanged(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\\\"};duplicate=1\",\"expected\":\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\\\"};duplicate=1\",\"expected\":\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BucketOverfilled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"BucketOverfilled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ConfigChanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Config\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRateLimitRate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByAdminOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByAdminOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenBucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateRefill\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateRefill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consume\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_currentTokenBucketState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_min\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_min\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"url\\\":\\\"#configchanged\\\"};duplicate=1\",\"expected\":\"ConfigChanged -> #configchanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=1\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=2\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=3\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=4\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=5\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=6\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=7\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"url\\\":\\\"#disablednonzeroratelimit\\\"};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit -> #disablednonzeroratelimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"url\\\":\\\"#invalidratelimitrate\\\"};duplicate=1\",\"expected\":\"InvalidRateLimitRate -> #invalidratelimitrate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"url\\\":\\\"#ratelimitmustbedisabled\\\"};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled -> #ratelimitmustbedisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=1\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=2\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=3\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=4\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=5\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=6\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=7\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=8\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=9\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"url\\\":\\\"#tokenmaxcapacityexceeded\\\"};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded -> #tokenmaxcapacityexceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"url\\\":\\\"#tokenratelimitreached\\\"};duplicate=1\",\"expected\":\"TokenRateLimitReached -> #tokenratelimitreached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokensConsumed\\\",\\\"url\\\":\\\"#tokensconsumed\\\"};duplicate=1\",\"expected\":\"TokensConsumed -> #tokensconsumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"url\\\":\\\"#_currenttokenbucketstate\\\"};duplicate=1\",\"expected\":\"_currentTokenBucketState -> #_currenttokenbucketstate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=1\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=2\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or\\\"};duplicate=1\",\"expected\":\", or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adjusts token amount to respect new capacity\\\"};duplicate=1\",\"expected\":\"Adjusts token amount to respect new capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically refills tokens based on elapsed time\\\"};duplicate=1\",\"expected\":\"Automatically refills tokens based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the number of tokens to add during a refill operation.\\\"};duplicate=1\",\"expected\":\"Calculates the number of tokens to add during a refill operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates token refill based on elapsed time\\\"};duplicate=1\",\"expected\":\"Calculates token refill based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes tokens to add based on elapsed time and rate\\\"};duplicate=1\",\"expected\":\"Computes tokens to add based on elapsed time and rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration parameters for the rate limiter.\\\"};duplicate=1\",\"expected\":\"Configuration parameters for the rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration structure used to configure\\\"};duplicate=1\",\"expected\":\"Configuration structure used to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration update process:\\\"};duplicate=1\",\"expected\":\"Configuration update process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current token balance\\\"};duplicate=1\",\"expected\":\"Current token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rate limiter\\\"};duplicate=1\",\"expected\":\"Emitted when the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are successfully consumed from the\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are successfully consumed from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enforces capacity and rate limits\\\"};duplicate=1\",\"expected\":\"Enforces capacity and rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures result doesn't exceed bucket capacity\\\"};duplicate=1\",\"expected\":\"Ensures result doesn't exceed bucket capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First number\\\"};duplicate=1\",\"expected\":\"First number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For disabled configurations:\\\"};duplicate=1\",\"expected\":\"For disabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For enabled configurations:\\\"};duplicate=1\",\"expected\":\"For enabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key behaviors:\\\"};duplicate=1\",\"expected\":\"Key behaviors:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum token capacity\\\"};duplicate=1\",\"expected\":\"Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"May throw\\\"};duplicate=1\",\"expected\":\"May throw\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate and capacity must be zero\\\"};duplicate=1\",\"expected\":\"Rate and capacity must be zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate must be non-zero and less than capacity\\\"};duplicate=1\",\"expected\":\"Rate must be non-zero and less than capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refill calculation:\\\"};duplicate=1\",\"expected\":\"Refill calculation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\\\"};duplicate=1\",\"expected\":\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents the state and configuration of a token bucket rate limiter.\\\"};duplicate=1\",\"expected\":\"Represents the state and configuration of a token bucket rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the current state of a token bucket, including automatic refill calculations.\\\"};duplicate=1\",\"expected\":\"Retrieves the current state of a token bucket, including automatic refill calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state without modifying storage\\\"};duplicate=1\",\"expected\":\"Returns the current state without modifying storage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the new token balance\\\"};duplicate=1\",\"expected\":\"Returns the new token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the smaller of two numbers.\\\"};duplicate=1\",\"expected\":\"Returns the smaller of two numbers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Second number\\\"};duplicate=1\",\"expected\":\"Second number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Skips execution if rate limiting is disabled or requestTokens is zero\\\"};duplicate=1\",\"expected\":\"Skips execution if rate limiting is disabled or requestTokens is zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"State management structure:\\\"};duplicate=1\",\"expected\":\"State management structure:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The configuration to validate\\\"};duplicate=1\",\"expected\":\"The configuration to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current state of the token bucket\\\"};duplicate=1\",\"expected\":\"The current state of the token bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration applied\\\"};duplicate=1\",\"expected\":\"The new configuration applied\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration to apply\\\"};duplicate=1\",\"expected\":\"The new configuration to apply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token balance after refill\\\"};duplicate=1\",\"expected\":\"The new token balance after refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens consumed\\\"};duplicate=1\",\"expected\":\"The number of tokens consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to consume\\\"};duplicate=1\",\"expected\":\"The number of tokens to consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address (use address(0) for aggregate value capacity)\\\"};duplicate=1\",\"expected\":\"The token address (use address(0) for aggregate value capacity)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to configure\\\"};duplicate=1\",\"expected\":\"The token bucket to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to consume from\\\"};duplicate=1\",\"expected\":\"The token bucket to consume from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses the configuration parameters defined in\\\"};duplicate=1\",\"expected\":\"This struct uses the configuration parameters defined in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a disabled\\\"};duplicate=1\",\"expected\":\"Thrown when a disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by an unauthorized address.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by an unauthorized address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the rate limit\\\"};duplicate=1\",\"expected\":\"Thrown when the rate limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the\\\"};duplicate=1\",\"expected\":\"Thrown when the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time elapsed since last refill (in seconds)\\\"};duplicate=1\",\"expected\":\"Time elapsed since last refill (in seconds)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokens per second refill rate\\\"};duplicate=1\",\"expected\":\"Tokens per second refill rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket parameters (enabled state, capacity, rate)\\\"};duplicate=1\",\"expected\":\"Updates bucket parameters (enabled state, capacity, rate)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket state with current refill before applying changes\\\"};duplicate=1\",\"expected\":\"Updates bucket state with current refill before applying changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the bucket state to reflect the current block timestamp:\\\"};duplicate=1\",\"expected\":\"Updates the bucket state to reflect the current block timestamp:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the lastUpdated timestamp\\\"};duplicate=1\",\"expected\":\"Updates the lastUpdated timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rate limiter configuration.\\\"};duplicate=1\",\"expected\":\"Updates the rate limiter configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used internally by\\\"};duplicate=1\",\"expected\":\"Used internally by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Utility function for safe minimum value calculation.\\\"};duplicate=1\",\"expected\":\"Utility function for safe minimum value calculation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates against mustBeDisabled requirement\\\"};duplicate=1\",\"expected\":\"Validates against mustBeDisabled requirement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates rate limiter configuration parameters.\\\"};duplicate=1\",\"expected\":\"Validates rate limiter configuration parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validation rules:\\\"};duplicate=1\",\"expected\":\"Validation rules:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the configuration must be disabled\\\"};duplicate=1\",\"expected\":\"Whether the configuration must be disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"a\\\"};duplicate=1\",\"expected\":\"a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"b\\\"};duplicate=1\",\"expected\":\"b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=1\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=2\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity\\\"};duplicate=1\",\"expected\":\"capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=1\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=2\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=3\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contains more tokens than its capacity.\\\"};duplicate=1\",\"expected\":\"contains more tokens than its capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event for non-zero consumption\\\"};duplicate=1\",\"expected\":\"event for non-zero consumption\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"has non-zero rate or capacity values.\\\"};duplicate=1\",\"expected\":\"has non-zero rate or capacity values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid (rate is zero or exceeds capacity).\\\"};duplicate=1\",\"expected\":\"is invalid (rate is zero or exceeds capacity).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is updated.\\\"};duplicate=1\",\"expected\":\"is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Activation state of the rate limiter\\\"};duplicate=1\",\"expected\":\"isEnabled: Activation state of the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Whether rate limiting is active\\\"};duplicate=1\",\"expected\":\"isEnabled: Whether rate limiting is active\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\\\"};duplicate=1\",\"expected\":\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"mustBeDisabled\\\"};duplicate=1\",\"expected\":\"mustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on violations\\\"};duplicate=1\",\"expected\":\"on violations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Token refill rate per second\\\"};duplicate=1\",\"expected\":\"rate: Token refill rate per second\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Tokens added per second during refill\\\"};duplicate=1\",\"expected\":\"rate: Tokens added per second during refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate\\\"};duplicate=1\",\"expected\":\"rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requestTokens\\\"};duplicate=1\",\"expected\":\"requestTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=1\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=2\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timeDiff\\\"};duplicate=1\",\"expected\":\"timeDiff\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=1\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens: Current token balance in the bucket\\\"};duplicate=1\",\"expected\":\"tokens: Current token balance in the bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address tokenAdminRegistry);\\\"};duplicate=1\",\"expected\":\"constructor(address tokenAdminRegistry);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _registerAdmin(address token, address admin) internal;\\\"};duplicate=1\",\"expected\":\"function _registerAdmin(address token, address admin) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAccessControlDefaultAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAccessControlDefaultAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaGetCCIPAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaGetCCIPAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaOwner(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaOwner(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_registerAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_registerAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAccessControlDefaultAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAccessControlDefaultAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaGetCCIPAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaGetCCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"url\\\":\\\"#addresszero\\\"};duplicate=1\",\"expected\":\"AddressZero -> #addresszero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=1\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=2\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=1\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=2\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RequiredRoleNotFound\\\",\\\"url\\\":\\\"#requiredrolenotfound\\\"};duplicate=1\",\"expected\":\"RequiredRoleNotFound -> #requiredrolenotfound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenAdminRegistry\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/token-admin-registry\\\"};duplicate=1\",\"expected\":\"TokenAdminRegistry -> /ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=2\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's getCCIPAdmin method\\\"};duplicate=1\",\"expected\":\"Calls token's getCCIPAdmin method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's owner method\\\"};duplicate=1\",\"expected\":\"Calls token's owner method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core registration logic:\\\"};duplicate=1\",\"expected\":\"Core registration logic:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with a reference to the\\\"};duplicate=1\",\"expected\":\"Initializes the contract with a reference to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to handle administrator registration.\\\"};duplicate=1\",\"expected\":\"Internal function to handle administrator registration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=1\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=2\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes administrator to registry\\\"};duplicate=1\",\"expected\":\"Proposes administrator to registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the getCCIPAdmin method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the getCCIPAdmin method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the owner method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the owner method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the immutable registry reference\\\"};duplicate=1\",\"expected\":\"Sets up the immutable registry reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the TokenAdminRegistry contract\\\"};duplicate=1\",\"expected\":\"The address of the TokenAdminRegistry contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=1\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=2\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using AccessControl:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using AccessControl:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using getCCIPAdmin:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using getCCIPAdmin:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using owner pattern:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using owner pattern:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates caller is the admin (reverts with\\\"};duplicate=1\",\"expected\":\"Validates caller is the admin (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the tokenAdminRegistry address is not zero (reverts with\\\"};duplicate=1\",\"expected\":\"Validates the tokenAdminRegistry address is not zero (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\\\"};duplicate=1\",\"expected\":\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"admin\\\"};duplicate=1\",\"expected\":\"admin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=1\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=2\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAdminRegistry\\\"};duplicate=1\",\"expected\":\"tokenAdminRegistry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AlreadyRegistered(address token);\\\"};duplicate=1\",\"expected\":\"error AlreadyRegistered(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenPoolToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidTokenPoolToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyPendingAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyPendingAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyRegistryModuleOrOwner(address sender);\\\"};duplicate=1\",\"expected\":\"error OnlyRegistryModuleOrOwner(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddress();\\\"};duplicate=1\",\"expected\":\"error ZeroAddress();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event AdministratorTransferRequested(address indexed token, address indexed currentAdmin, address indexed newAdmin);\\\"};duplicate=1\",\"expected\":\"event AdministratorTransferRequested(address indexed token, address indexed currentAdmin, address indexed newAdmin);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event AdministratorTransferRequested(address indexed token, address indexed currentAdmin, address indexed newAdmin);\\\"};duplicate=2\",\"expected\":\"event AdministratorTransferRequested(address indexed token, address indexed currentAdmin, address indexed newAdmin);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event AdministratorTransferred(address indexed token, address indexed newAdmin);\\\"};duplicate=1\",\"expected\":\"event AdministratorTransferred(address indexed token, address indexed newAdmin);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\\\"};duplicate=1\",\"expected\":\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\\\"};duplicate=2\",\"expected\":\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleAdded(address module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleAdded(address module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleAdded(address module);\\\"};duplicate=2\",\"expected\":\"event RegistryModuleAdded(address module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleRemoved(address indexed module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleRemoved(address indexed module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleRemoved(address indexed module);\\\"};duplicate=2\",\"expected\":\"event RegistryModuleRemoved(address indexed module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function acceptAdminRole(address localToken) external;\\\"};duplicate=1\",\"expected\":\"function acceptAdminRole(address localToken) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function addRegistryModule(address module) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function addRegistryModule(address module) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllConfiguredTokens(uint64 startIndex, uint64 maxCount) external view returns (address[] memory tokens);\\\"};duplicate=1\",\"expected\":\"function getAllConfiguredTokens(uint64 startIndex, uint64 maxCount) external view returns (address[] memory tokens);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getPool(address token) external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getPool(address token) external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getPools(address[] calldata tokens) external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getPools(address[] calldata tokens) external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenConfig(address token) external view returns (TokenConfig memory);\\\"};duplicate=1\",\"expected\":\"function getTokenConfig(address token) external view returns (TokenConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isAdministrator(address localToken, address administrator) external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isAdministrator(address localToken, address administrator) external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isRegistryModule(address module) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isRegistryModule(address module) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function proposeAdministrator(address localToken, address administrator) external;\\\"};duplicate=1\",\"expected\":\"function proposeAdministrator(address localToken, address administrator) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function removeRegistryModule(address module) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function removeRegistryModule(address module) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setPool(address localToken, address pool) external onlyTokenAdmin(localToken);\\\"};duplicate=1\",\"expected\":\"function setPool(address localToken, address pool) external onlyTokenAdmin(localToken);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferAdminRole(address localToken, address newAdmin) external onlyTokenAdmin(localToken);\\\"};duplicate=1\",\"expected\":\"function transferAdminRole(address localToken, address newAdmin) external onlyTokenAdmin(localToken);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\\\"};duplicate=1\",\"expected\":\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AddressZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AdministratorTransferRequested\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AdministratorTransferRequested\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AdministratorTransferRequested\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"AdministratorTransferRequested\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AdministratorTransferred\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AdministratorTransferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AlreadyRegistered\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AlreadyRegistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Events\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Events\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenPoolToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenPoolToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyPendingAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyPendingAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyRegistryModuleOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyRegistryModuleOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"PoolSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleAdded\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"RegistryModuleAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleRemoved\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"RegistryModuleRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"acceptAdminRole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"addRegistryModule\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"addRegistryModule\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllConfiguredTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllConfiguredTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getPool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getPools\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getPools\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isRegistryModule\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isRegistryModule\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"proposeAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"proposeAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"removeRegistryModule\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"removeRegistryModule\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setPool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferAdminRole\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferAdminRole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorTransferRequested\\\",\\\"url\\\":\\\"#administratortransferrequested\\\"};duplicate=1\",\"expected\":\"AdministratorTransferRequested -> #administratortransferrequested\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorTransferRequested\\\",\\\"url\\\":\\\"#administratortransferrequested\\\"};duplicate=2\",\"expected\":\"AdministratorTransferRequested -> #administratortransferrequested\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AlreadyRegistered\\\",\\\"url\\\":\\\"#alreadyregistered\\\"};duplicate=1\",\"expected\":\"AlreadyRegistered -> #alreadyregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidTokenPoolToken\\\",\\\"url\\\":\\\"#invalidtokenpooltoken\\\"};duplicate=1\",\"expected\":\"InvalidTokenPoolToken -> #invalidtokenpooltoken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"url\\\":\\\"#onlyadministrator\\\"};duplicate=1\",\"expected\":\"OnlyAdministrator -> #onlyadministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"url\\\":\\\"#onlyadministrator\\\"};duplicate=2\",\"expected\":\"OnlyAdministrator -> #onlyadministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"url\\\":\\\"#poolset\\\"};duplicate=1\",\"expected\":\"PoolSet -> #poolset\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=1\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=2\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=3\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"addRegistryModule\\\",\\\"url\\\":\\\"#addregistrymodule\\\"};duplicate=1\",\"expected\":\"addRegistryModule -> #addregistrymodule\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"isRegistryModule\\\",\\\"url\\\":\\\"#isregistrymodule\\\"};duplicate=1\",\"expected\":\"isRegistryModule -> #isregistrymodule\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"proposeAdministrator\\\",\\\"url\\\":\\\"#proposeadministrator\\\"};duplicate=1\",\"expected\":\"proposeAdministrator -> #proposeadministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"removeRegistryModule\\\",\\\"url\\\":\\\"#removeregistrymodule\\\"};duplicate=1\",\"expected\":\"removeRegistryModule -> #removeregistrymodule\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setPool\\\",\\\"url\\\":\\\"#setpool\\\"};duplicate=1\",\"expected\":\"setPool -> #setpool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setPool\\\",\\\"url\\\":\\\"#setpool\\\"};duplicate=2\",\"expected\":\"setPool -> #setpool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"transferAdminRole\\\",\\\"url\\\":\\\"#transferadminrole\\\"};duplicate=1\",\"expected\":\"transferAdminRole -> #transferadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"transferAdminRole\\\",\\\"url\\\":\\\"#transferadminrole\\\"};duplicate=2\",\"expected\":\"transferAdminRole -> #transferadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\") or owner\\\"};duplicate=1\",\"expected\":\") or owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=2\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=3\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=4\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=5\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=6\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=7\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts the administrator role for a token.\\\"};duplicate=1\",\"expected\":\"Accepts the administrator role for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address to verify\\\"};duplicate=1\",\"expected\":\"Address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address to verify\\\"};duplicate=2\",\"expected\":\"Address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new registry module to the allowed modules list.\\\"};duplicate=1\",\"expected\":\"Adds a new registry module to the allowed modules list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds token to configured tokens list\\\"};duplicate=1\",\"expected\":\"Adds token to configured tokens list\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of corresponding pool addresses\\\"};duplicate=1\",\"expected\":\"Array of corresponding pool addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically adjusts count if it exceeds available tokens\\\"};duplicate=1\",\"expected\":\"Automatically adjusts count if it exceeds available tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Batch query functionality:\\\"};duplicate=1\",\"expected\":\"Batch query functionality:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can cancel pending transfer with address(0)\\\"};duplicate=1\",\"expected\":\"Can cancel pending transfer with address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can delist token by setting address(0)\\\"};duplicate=1\",\"expected\":\"Can delist token by setting address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cannot override existing administrator (reverts with\\\"};duplicate=1\",\"expected\":\"Cannot override existing administrator (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if an address is an authorized registry module.\\\"};duplicate=1\",\"expected\":\"Checks if an address is an authorized registry module.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if an address is the administrator for a token.\\\"};duplicate=1\",\"expected\":\"Checks if an address is the administrator for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clears the pending administrator after acceptance\\\"};duplicate=1\",\"expected\":\"Clears the pending administrator after acceptance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Complete token configuration\\\"};duplicate=1\",\"expected\":\"Complete token configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data structure for each token.\\\"};duplicate=1\",\"expected\":\"Configuration data structure for each token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current administrator\\\"};duplicate=1\",\"expected\":\"Current administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=27\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=28\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=29\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=30\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=31\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=32\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Does not consider pending administrators\\\"};duplicate=1\",\"expected\":\"Does not consider pending administrators\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits AdministratorTransferred event\\\"};duplicate=1\",\"expected\":\"Emits AdministratorTransferred event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits RegistryModuleAdded event if module is added\\\"};duplicate=1\",\"expected\":\"Emits RegistryModuleAdded event if module is added\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits RegistryModuleRemoved event if module is removed\\\"};duplicate=1\",\"expected\":\"Emits RegistryModuleRemoved event if module is removed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=3\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new registry module is authorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a new registry module is authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is added via\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is added via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is deauthorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is deauthorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is removed via\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is removed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token pool address is updated via\\\"};duplicate=1\",\"expected\":\"Emitted when a token pool address is updated via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token's pool configuration is changed via\\\"};duplicate=1\",\"expected\":\"Emitted when a token's pool configuration is changed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator role transfer is completed via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator role transfer is completed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is completed via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator transfer is completed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is initiated via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator transfer is initiated via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is initiated via\\\"};duplicate=2\",\"expected\":\"Emitted when an administrator transfer is initiated via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First step of two-step administrator transfer:\\\"};duplicate=1\",\"expected\":\"First step of two-step administrator transfer:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=3\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=4\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=5\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=6\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=7\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=8\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=9\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial administrator setup:\\\"};duplicate=1\",\"expected\":\"Initial administrator setup:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initiates transfer of administrator role.\\\"};duplicate=1\",\"expected\":\"Initiates transfer of administrator role.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initiates two-step transfer process requiring\\\"};duplicate=1\",\"expected\":\"Initiates two-step transfer process requiring\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"List of configured token addresses\\\"};duplicate=1\",\"expected\":\"List of configured token addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maintains consistent ordering\\\"};duplicate=1\",\"expected\":\"Maintains consistent ordering\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maintains order corresponding to input array\\\"};duplicate=1\",\"expected\":\"Maintains order corresponding to input array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum tokens to retrieve (use type(uint64).max for all)\\\"};duplicate=1\",\"expected\":\"Maximum tokens to retrieve (use type(uint64).max for all)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Module verification helper:\\\"};duplicate=1\",\"expected\":\"Module verification helper:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"New pool address (or 0 to delist)\\\"};duplicate=1\",\"expected\":\"New pool address (or 0 to delist)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No effect if module is already registered\\\"};duplicate=1\",\"expected\":\"No effect if module is already registered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No effect if module is not registered\\\"};duplicate=1\",\"expected\":\"No effect if module is not registered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by contract owner\\\"};duplicate=1\",\"expected\":\"Only callable by contract owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by contract owner\\\"};duplicate=2\",\"expected\":\"Only callable by contract owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by current administrator (reverts with\\\"};duplicate=1\",\"expected\":\"Only callable by current administrator (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by registry modules (see\\\"};duplicate=1\",\"expected\":\"Only callable by registry modules (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the pending administrator\\\"};duplicate=1\",\"expected\":\"Only callable by the pending administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by token administrator (reverts with\\\"};duplicate=1\",\"expected\":\"Only callable by token administrator (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pagination features:\\\"};duplicate=1\",\"expected\":\"Pagination features:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=20\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=21\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=22\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=23\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=24\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=25\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=26\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pending administrator (if any)\\\"};duplicate=1\",\"expected\":\"Pending administrator (if any)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Permission verification helper:\\\"};duplicate=1\",\"expected\":\"Permission verification helper:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool configuration management:\\\"};duplicate=1\",\"expected\":\"Pool configuration management:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposed administrator address\\\"};duplicate=1\",\"expected\":\"Proposed administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes an initial administrator for a token.\\\"};duplicate=1\",\"expected\":\"Proposes an initial administrator for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registry module management:\\\"};duplicate=1\",\"expected\":\"Registry module management:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registry module management:\\\"};duplicate=2\",\"expected\":\"Registry module management:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a registry module from the allowed modules list.\\\"};duplicate=1\",\"expected\":\"Removes a registry module from the allowed modules list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires\\\"};duplicate=1\",\"expected\":\"Requires\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns a paginated list of configured tokens.\\\"};duplicate=1\",\"expected\":\"Returns a paginated list of configured tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns address(0) for unconfigured tokens\\\"};duplicate=1\",\"expected\":\"Returns address(0) for unconfigured tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns address(0) if:\\\"};duplicate=1\",\"expected\":\"Returns address(0) if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all token configuration data:\\\"};duplicate=1\",\"expected\":\"Returns all token configuration data:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns empty array if startIndex is beyond list length\\\"};duplicate=1\",\"expected\":\"Returns empty array if startIndex is beyond list length\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns pool addresses for multiple tokens.\\\"};duplicate=1\",\"expected\":\"Returns pool addresses for multiple tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the complete configuration for a token.\\\"};duplicate=1\",\"expected\":\"Returns the complete configuration for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the pool address for a specific token.\\\"};duplicate=1\",\"expected\":\"Returns the pool address for a specific token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true for authorized modules\\\"};duplicate=1\",\"expected\":\"Returns true for authorized modules\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true only for current administrator\\\"};duplicate=1\",\"expected\":\"Returns true only for current administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Second step of the two-step administrator transfer process:\\\"};duplicate=1\",\"expected\":\"Second step of the two-step administrator transfer process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of all configured tokens for efficient enumeration.\\\"};duplicate=1\",\"expected\":\"Set of all configured tokens for efficient enumeration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized registry modules that can register administrators.\\\"};duplicate=1\",\"expected\":\"Set of authorized registry modules that can register administrators.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets or updates the pool for a token.\\\"};duplicate=1\",\"expected\":\"Sets or updates the pool for a token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Starting position in the list (0 for beginning)\\\"};duplicate=1\",\"expected\":\"Starting position in the list (0 for beginning)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores configuration data for each token, including administrators and pool addresses.\\\"};duplicate=1\",\"expected\":\"Stores configuration data for each token, including administrators and pool addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports partial list retrieval to prevent RPC timeouts\\\"};duplicate=1\",\"expected\":\"Supports partial list retrieval to prevent RPC timeouts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the module\\\"};duplicate=1\",\"expected\":\"The address of the module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the module\\\"};duplicate=2\",\"expected\":\"The address of the module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the new administrator\\\"};duplicate=1\",\"expected\":\"The address of the new administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the newly authorized module\\\"};duplicate=1\",\"expected\":\"The address of the newly authorized module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the removed module\\\"};duplicate=1\",\"expected\":\"The address of the removed module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current administrator address\\\"};duplicate=1\",\"expected\":\"The current administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current administrator address\\\"};duplicate=2\",\"expected\":\"The current administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The module to authorize\\\"};duplicate=1\",\"expected\":\"The module to authorize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The module to remove\\\"};duplicate=1\",\"expected\":\"The module to remove\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new administrator address\\\"};duplicate=1\",\"expected\":\"The new administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new pool address\\\"};duplicate=1\",\"expected\":\"The new pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new pool address\\\"};duplicate=2\",\"expected\":\"The new pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The previous pool address\\\"};duplicate=1\",\"expected\":\"The previous pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The previous pool address\\\"};duplicate=2\",\"expected\":\"The previous pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The proposed new administrator address (or 0 to cancel)\\\"};duplicate=1\",\"expected\":\"The proposed new administrator address (or 0 to cancel)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The proposed new administrator address\\\"};duplicate=1\",\"expected\":\"The proposed new administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The proposed new administrator\\\"};duplicate=1\",\"expected\":\"The proposed new administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=1\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=2\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being configured\\\"};duplicate=1\",\"expected\":\"The token address being configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that already has an administrator\\\"};duplicate=1\",\"expected\":\"The token address that already has an administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that is not supported by the pool\\\"};duplicate=1\",\"expected\":\"The token address that is not supported by the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role has been transferred\\\"};duplicate=1\",\"expected\":\"The token contract whose admin role has been transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role is being transferred\\\"};duplicate=1\",\"expected\":\"The token contract whose admin role is being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role is being transferred\\\"};duplicate=2\",\"expected\":\"The token contract whose admin role is being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token for the transfer\\\"};duplicate=1\",\"expected\":\"The token for the transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to accept the administrator role\\\"};duplicate=1\",\"expected\":\"The token to accept the administrator role\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to query\\\"};duplicate=1\",\"expected\":\"The token to query\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token whose administrator changed\\\"};duplicate=1\",\"expected\":\"The token whose administrator changed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token whose pool changed\\\"};duplicate=1\",\"expected\":\"The token whose pool changed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token's pool address\\\"};duplicate=1\",\"expected\":\"The token's pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=1\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=2\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=3\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to registry modules or owner is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to registry modules or owner is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to the token administrator is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to the token administrator is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\\\"};duplicate=1\",\"expected\":\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to register an administrator for a token that already has one.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to register an administrator for a token that already has one.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set a pool that doesn't support the token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set a pool that doesn't support the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) where not allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) where not allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is delisted from CCIP\\\"};duplicate=1\",\"expected\":\"Token is delisted from CCIP\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is not configured\\\"};duplicate=1\",\"expected\":\"Token is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token pool address\\\"};duplicate=1\",\"expected\":\"Token pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token to check\\\"};duplicate=1\",\"expected\":\"Token to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token to configure\\\"};duplicate=1\",\"expected\":\"Token to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token to configure\\\"};duplicate=2\",\"expected\":\"Token to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token to query\\\"};duplicate=1\",\"expected\":\"Token to query\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TokenConfig\\\"};duplicate=1\",\"expected\":\"TokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokens to query\\\"};duplicate=1\",\"expected\":\"Tokens to query\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if address is authorized module\\\"};duplicate=1\",\"expected\":\"True if address is authorized module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if address is current administrator\\\"};duplicate=1\",\"expected\":\"True if address is current administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=27\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=28\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=29\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=30\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=31\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=32\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used for permission checks in proposeAdministrator\\\"};duplicate=1\",\"expected\":\"Used for permission checks in proposeAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Useful for efficient multi-token queries\\\"};duplicate=1\",\"expected\":\"Useful for efficient multi-token queries\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates pool supports token (reverts with\\\"};duplicate=1\",\"expected\":\"Validates pool supports token (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=10\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=11\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=12\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=13\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=14\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=15\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=16\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=6\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=7\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=8\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=9\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=2\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=3\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=12\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=13\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=14\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=15\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=16\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=17\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=18\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=19\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=20\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=21\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=22\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=23\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=24\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=25\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=26\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=27\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=28\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=29\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=30\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=31\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=32\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=33\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=34\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=35\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=36\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=37\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=38\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=39\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=40\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"administrator\\\"};duplicate=1\",\"expected\":\"administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"administrator\\\"};duplicate=2\",\"expected\":\"administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"call to complete\\\"};duplicate=1\",\"expected\":\"call to complete\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"currentAdmin\\\"};duplicate=1\",\"expected\":\"currentAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"currentAdmin\\\"};duplicate=2\",\"expected\":\"currentAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on changes\\\"};duplicate=1\",\"expected\":\"event on changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=2\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localToken\\\"};duplicate=1\",\"expected\":\"localToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localToken\\\"};duplicate=2\",\"expected\":\"localToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localToken\\\"};duplicate=3\",\"expected\":\"localToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localToken\\\"};duplicate=4\",\"expected\":\"localToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localToken\\\"};duplicate=5\",\"expected\":\"localToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxCount\\\"};duplicate=1\",\"expected\":\"maxCount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=1\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=2\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=3\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=4\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=5\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=6\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=7\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=1\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=2\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=3\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=4\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newPool\\\"};duplicate=1\",\"expected\":\"newPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newPool\\\"};duplicate=2\",\"expected\":\"newPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or canceled.\\\"};duplicate=1\",\"expected\":\"or canceled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pool\\\"};duplicate=1\",\"expected\":\"pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"previousPool\\\"};duplicate=1\",\"expected\":\"previousPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"previousPool\\\"};duplicate=2\",\"expected\":\"previousPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"startIndex\\\"};duplicate=1\",\"expected\":\"startIndex\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=10\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=11\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=4\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=5\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=6\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=7\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=8\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=9\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.AddressSet internal s_allowlist;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.AddressSet internal s_allowlist;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.UintSet internal s_remoteChainSelectors;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.UintSet internal s_remoteChainSelectors;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IERC20 internal immutable i_token;\\\"};duplicate=1\",\"expected\":\"IERC20 internal immutable i_token;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IRouter internal s_router;\\\"};duplicate=1\",\"expected\":\"IRouter internal s_router;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal immutable i_rmnProxy;\\\"};duplicate=1\",\"expected\":\"address internal immutable i_rmnProxy;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rateLimitAdmin;\\\"};duplicate=1\",\"expected\":\"address internal s_rateLimitAdmin;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_allowlistEnabled;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_allowlistEnabled;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\\\"};duplicate=1\",\"expected\":\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CallerIsNotARampOnRouter(address caller);\\\"};duplicate=1\",\"expected\":\"error CallerIsNotARampOnRouter(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainAlreadyExists(uint64 chainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainAlreadyExists(uint64 chainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainNotAllowed(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainNotAllowed(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CursedByRMN();\\\"};duplicate=1\",\"expected\":\"error CursedByRMN();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\\\"};duplicate=1\",\"expected\":\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\\\"};duplicate=1\",\"expected\":\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MismatchedArrayLengths();\\\"};duplicate=1\",\"expected\":\"error MismatchedArrayLengths();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error NonExistentChain(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error NonExistentChain(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\\\"};duplicate=1\",\"expected\":\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error SenderNotAllowed(address sender);\\\"};duplicate=1\",\"expected\":\"error SenderNotAllowed(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error Unauthorized(address caller);\\\"};duplicate=1\",\"expected\":\"error Unauthorized(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddressNotAllowed();\\\"};duplicate=1\",\"expected\":\"error ZeroAddressNotAllowed();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\\\"};duplicate=1\",\"expected\":\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _checkAllowList(address sender) internal view;\\\"};duplicate=1\",\"expected\":\"function _checkAllowList(address sender) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _lockOrBurn(uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _lockOrBurn(uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\\\"};duplicate=1\",\"expected\":\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _releaseOrMint(address receiver, uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _releaseOrMint(address receiver, uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\\\"};duplicate=1\",\"expected\":\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowList() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getAllowList() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowListEnabled() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function getAllowListEnabled() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRateLimitAdmin() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRateLimitAdmin() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\\\"};duplicate=1\",\"expected\":\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRmnProxy() public view returns (address rmnProxy);\\\"};duplicate=1\",\"expected\":\"function getRmnProxy() public view returns (address rmnProxy);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRouter() public view returns (address router);\\\"};duplicate=1\",\"expected\":\"function getRouter() public view returns (address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getSupportedChains() public view returns (uint64[] memory);\\\"};duplicate=1\",\"expected\":\"function getSupportedChains() public view returns (uint64[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getToken() public view returns (IERC20 token);\\\"};duplicate=1\",\"expected\":\"function getToken() public view returns (IERC20 token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenDecimals() public view virtual returns (uint8 decimals);\\\"};duplicate=1\",\"expected\":\"function getTokenDecimals() public view virtual returns (uint8 decimals);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedToken(address token) public view virtual returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedToken(address token) public view virtual returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRouter(address newRouter) public onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRouter(address newRouter) public onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\\\"};duplicate=1\",\"expected\":\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\\\"};duplicate=1\",\"expected\":\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\\\"};duplicate=1\",\"expected\":\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 internal immutable i_tokenDecimals;\\\"};duplicate=1\",\"expected\":\"uint8 internal immutable i_tokenDecimals;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainAlreadyExists\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainAlreadyExists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CursedByRMN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CursedByRMN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDecimalArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDecimalArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSourcePoolAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MismatchedArrayLengths\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MismatchedArrayLengths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"NonExistentChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OverflowDetected\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OverflowDetected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolAlreadyAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Rate Limiting\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Rate Limiting\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RemoteChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RemoteChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SenderNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Unauthorized\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Unauthorized\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateLocalAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateLocalAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_checkAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_checkAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeInboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeInboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeOutboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeOutboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_encodeLocalDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_encodeLocalDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOffRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOffRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOnRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_parseRemoteDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_parseRemoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRateLimitConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRateLimitConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateLockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateReleaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"addRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"addRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyChainUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyChainUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowListEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowListEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentInboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentInboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentOutboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentOutboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemotePools\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemotePools\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemoteToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemoteToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getSupportedChains\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getSupportedChains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_allowlistEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_allowlistEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_rmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_tokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_tokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_token\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"removeRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"removeRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_allowlist\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainSelectors\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remotePoolAddresses\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remotePoolAddresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_router\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=2\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainConfigured\\\",\\\"url\\\":\\\"#chainconfigured\\\"};duplicate=1\",\"expected\":\"ChainConfigured -> #chainconfigured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=1\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=2\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"url\\\":\\\"#invalidremotechaindecimals\\\"};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals -> #invalidremotechaindecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"url\\\":\\\"#invalidremotepoolforchain\\\"};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain -> #invalidremotepoolforchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LockedOrBurned\\\",\\\"url\\\":\\\"#lockedorburned\\\"};duplicate=1\",\"expected\":\"LockedOrBurned -> #lockedorburned\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"url\\\":\\\"#nonexistentchain\\\"};duplicate=1\",\"expected\":\"NonExistentChain -> #nonexistentchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.6.1/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.6.1/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.6.1/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/pool#releaseormintoutv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintOutV1 -> /ccip/api-reference/evm/v1.6.1/pool#releaseormintoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"url\\\":\\\"#poolalreadyadded\\\"};duplicate=1\",\"expected\":\"PoolAlreadyAdded -> #poolalreadyadded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.1/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/rate-limiter#tokenbucket\\\"};duplicate=1\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.1/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/rate-limiter#tokenbucket\\\"};duplicate=2\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.1/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ReleasedOrMinted\\\",\\\"url\\\":\\\"#releasedorminted\\\"};duplicate=1\",\"expected\":\"ReleasedOrMinted -> #releasedorminted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolAdded\\\",\\\"url\\\":\\\"#remotepooladded\\\"};duplicate=1\",\"expected\":\"RemotePoolAdded -> #remotepooladded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolRemoved\\\",\\\"url\\\":\\\"#remotepoolremoved\\\"};duplicate=1\",\"expected\":\"RemotePoolRemoved -> #remotepoolremoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RouterUpdated\\\",\\\"url\\\":\\\"#routerupdated\\\"};duplicate=1\",\"expected\":\"RouterUpdated -> #routerupdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"url\\\":\\\"#sendernotallowed\\\"};duplicate=1\",\"expected\":\"SenderNotAllowed -> #sendernotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"url\\\":\\\"#zeroaddressnotallowed\\\"};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed -> #zeroaddressnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=1\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=2\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=3\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI-encoded decimal places of the local token\\\"};duplicate=1\",\"expected\":\"ABI-encoded decimal places of the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Abstract internal function designed to be overridden with the specific token lock or burn logic.\\\"};duplicate=1\",\"expected\":\"Abstract internal function designed to be overridden with the specific token lock or burn logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Abstract internal function designed to be overridden with the specific token release or mint logic.\\\"};duplicate=1\",\"expected\":\"Abstract internal function designed to be overridden with the specific token release or mint logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adding new chains with rate limits\\\"};duplicate=1\",\"expected\":\"Adding new chains with rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new pool address for a remote chain.\\\"};duplicate=1\",\"expected\":\"Adds a new pool address for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListAdd for each successfully added address\\\"};duplicate=1\",\"expected\":\"AllowListAdd for each successfully added address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListRemove for each successfully removed address\\\"};duplicate=1\",\"expected\":\"AllowListRemove for each successfully removed address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlist is enabled\\\"};duplicate=1\",\"expected\":\"Allowlist is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows multiple pools per chain for upgrades\\\"};duplicate=1\",\"expected\":\"Allows multiple pools per chain for upgrades\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows:\\\"};duplicate=1\",\"expected\":\"Allows:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apply updates to the allow list.\\\"};duplicate=1\",\"expected\":\"Apply updates to the allow list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to add to the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to add to the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to remove from the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to remove from the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of configured chain selectors\\\"};duplicate=1\",\"expected\":\"Array of configured chain selectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of encoded pool addresses on remote chain\\\"};duplicate=1\",\"expected\":\"Array of encoded pool addresses on remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP_POOL_V1\\\"};duplicate=1\",\"expected\":\"CCIP_POOL_V1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates correct local token amounts using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates correct local token amounts using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the local amount based on the remote amount and decimals.\\\"};duplicate=1\",\"expected\":\"Calculates the local amount based on the remote amount and decimals.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Callable by owner or rate limit admin. All array lengths must match.\\\"};duplicate=1\",\"expected\":\"Callable by owner or rate limit admin. All array lengths must match.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized offRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized onRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is registered as an offRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is registered as an offRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is the designated onRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is the designated onRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=1\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=2\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=1\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=2\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a chain is configured in the pool.\\\"};duplicate=1\",\"expected\":\"Checks if a chain is configured in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a given token is supported by this pool.\\\"};duplicate=1\",\"expected\":\"Checks if a given token is supported by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Concrete child contracts (e.g., LockReleaseTokenPool, BurnMintTokenPool) must provide a specific implementation (either locking or burning tokens).\\\"};duplicate=1\",\"expected\":\"Concrete child contracts (e.g., LockReleaseTokenPool, BurnMintTokenPool) must provide a specific implementation (either locking or burning tokens).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Concrete child contracts must implement the logic to either release (transfer) existing tokens or mint new ones to the receiver.\\\"};duplicate=1\",\"expected\":\"Concrete child contracts must implement the logic to either release (transfer) existing tokens or mint new ones to the receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data for adding or updating a chain.\\\"};duplicate=1\",\"expected\":\"Configuration data for adding or updating a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration for each remote chain, including rate limits and token details.\\\"};duplicate=1\",\"expected\":\"Configuration for each remote chain, including rate limits and token details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the final amount released in local tokens\\\"};duplicate=1\",\"expected\":\"Contains the final amount released in local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=1\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=2\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the inbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the inbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the outbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the outbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data length is not 32 bytes (invalid ABI encoding)\\\"};duplicate=1\",\"expected\":\"Data length is not 32 bytes (invalid ABI encoding)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decoded value exceeds uint8 range\\\"};duplicate=1\",\"expected\":\"Decoded value exceeds uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=27\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=28\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=29\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=30\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=31\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=32\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=33\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=34\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=35\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=36\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=37\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=38\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=39\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=40\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=41\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=42\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=43\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=44\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=45\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=46\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=47\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=48\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=49\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=50\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=51\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a\\\"};duplicate=1\",\"expected\":\"Emits a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a\\\"};duplicate=2\",\"expected\":\"Emits a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits:\\\"};duplicate=1\",\"expected\":\"Emits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=3\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensure no inflight transactions exist before removal to prevent loss of funds.\\\"};duplicate=1\",\"expected\":\"Ensure no inflight transactions exist before removal to prevent loss of funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expects the data to be ABI-encoded uint256 that fits in uint8\\\"};duplicate=1\",\"expected\":\"Expects the data to be ABI-encoded uint256 that fits in uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\\\"};duplicate=1\",\"expected\":\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=1\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=2\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flag indicating if the pool uses access control.\\\"};duplicate=1\",\"expected\":\"Flag indicating if the pool uses access control.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the allowed addresses.\\\"};duplicate=1\",\"expected\":\"Gets the allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC165\\\"};duplicate=1\",\"expected\":\"IERC165\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=2\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IPoolV1\\\"};duplicate=1\",\"expected\":\"IPoolV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\\\"};duplicate=1\",\"expected\":\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is enabled, verifies sender is in s_allowlist\\\"};duplicate=1\",\"expected\":\"If allowlist is enabled, verifies sender is in s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial set of authorized addresses (if any)\\\"};duplicate=1\",\"expected\":\"Initial set of authorized addresses (if any)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes allowlist if provided\\\"};duplicate=1\",\"expected\":\"Initializes allowlist if provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the lock operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the lock operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the release operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the release operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal configuration for a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal configuration for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\\\"};duplicate=1\",\"expected\":\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for incoming transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for incoming transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for outgoing transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for outgoing transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to decode the decimal configuration received from a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal function to decode the decimal configuration received from a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to encode the local token's decimals for cross-chain communication.\\\"};duplicate=1\",\"expected\":\"Internal function to encode the local token's decimals for cross-chain communication.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to update rate limit configuration for a chain.\\\"};duplicate=1\",\"expected\":\"Internal function to update rate limit configuration for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate lock or burn operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate lock or burn operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate release or mint operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate release or mint operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to verify if a sender is authorized when allowlist is enabled.\\\"};duplicate=1\",\"expected\":\"Internal function to verify if a sender is authorized when allowlist is enabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\\\"};duplicate=1\",\"expected\":\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It is called by the public lockOrBurn function after all validations are complete.\\\"};duplicate=1\",\"expected\":\"It is called by the public lockOrBurn function after all validations are complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It is called by the public releaseOrMint function after validation and amount calculations.\\\"};duplicate=1\",\"expected\":\"It is called by the public releaseOrMint function after validation and amount calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Locks tokens in the pool for cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Locks tokens in the pool for cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maps hashed pool addresses to their original form for verification.\\\"};duplicate=1\",\"expected\":\"Maps hashed pool addresses to their original form for verification.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=33\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=34\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=35\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=36\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=37\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=27\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=28\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=29\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=30\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=31\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=32\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=33\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=34\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\\\"};duplicate=1\",\"expected\":\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\\\"};duplicate=1\",\"expected\":\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner\\\"};duplicate=1\",\"expected\":\"Only callable by owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the contract owner. Emits\\\"};duplicate=1\",\"expected\":\"Only callable by the contract owner. Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=20\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=21\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=22\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=23\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=24\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=25\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=26\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=27\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=28\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=29\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=30\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=31\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs access control validation based on the i_allowlistEnabled flag:\\\"};duplicate=1\",\"expected\":\"Performs access control validation based on the i_allowlistEnabled flag:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs initial setup:\\\"};duplicate=1\",\"expected\":\"Performs initial setup:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous pools remain valid for inflight messages\\\"};duplicate=1\",\"expected\":\"Previous pools remain valid for inflight messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token locking with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token locking with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token release with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token release with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=1\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=2\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for incoming transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for incoming transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for outgoing transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for outgoing transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=1\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=2\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=1\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=2\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=1\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=2\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Releases tokens from the pool to a recipient.\\\"};duplicate=1\",\"expected\":\"Releases tokens from the pool to a recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a pool address from a remote chain's configuration.\\\"};duplicate=1\",\"expected\":\"Removes a pool address from a remote chain's configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removing existing chains\\\"};duplicate=1\",\"expected\":\"Removing existing chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=1\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=2\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all configured chain selectors.\\\"};duplicate=1\",\"expected\":\"Returns all configured chain selectors.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded address to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded address to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded addresses to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded addresses to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the Risk Management Network proxy address.\\\"};duplicate=1\",\"expected\":\"Returns the Risk Management Network proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the configured pool addresses for a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the configured pool addresses for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rate limit administrator address.\\\"};duplicate=1\",\"expected\":\"Returns the current rate limit administrator address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current router address.\\\"};duplicate=1\",\"expected\":\"Returns the current router address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of inbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of inbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of outbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of outbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"Returns the number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token address on a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the token address on a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token managed by this pool.\\\"};duplicate=1\",\"expected\":\"Returns the token managed by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns whether allowlist functionality is active.\\\"};duplicate=1\",\"expected\":\"Returns whether allowlist functionality is active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=10\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=11\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=12\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=13\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=14\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=15\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=16\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=17\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=18\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=19\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=20\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=7\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=8\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=9\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=1\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=2\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=2\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=3\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=4\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=2\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is allowlisted (if enabled)\\\"};duplicate=1\",\"expected\":\"Sender is allowlisted (if enabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is not in the allowlist\\\"};duplicate=1\",\"expected\":\"Sender is not in the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of addresses authorized to initiate cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of addresses authorized to initiate cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized chain selectors for cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of authorized chain selectors for cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"Sets the address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the chain rate limiter config.\\\"};duplicate=1\",\"expected\":\"Sets the chain rate limiter config.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up immutable contract references\\\"};duplicate=1\",\"expected\":\"Sets up immutable contract references\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool is valid\\\"};duplicate=1\",\"expected\":\"Source pool is valid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports the following interfaces:\\\"};duplicate=1\",\"expected\":\"Supports the following interfaces:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address.\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The RMN proxy contract address\\\"};duplicate=1\",\"expected\":\"The RMN proxy contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network (RMN) proxy address.\\\"};duplicate=1\",\"expected\":\"The Risk Management Network (RMN) proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network proxy address\\\"};duplicate=1\",\"expected\":\"The Risk Management Network proxy address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual number of decimals provided\\\"};duplicate=1\",\"expected\":\"The actual number of decimals provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"The address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the already existing pool\\\"};duplicate=1\",\"expected\":\"The address of the already existing pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the invalid token\\\"};duplicate=1\",\"expected\":\"The address of the invalid token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the pool to remove\\\"};duplicate=1\",\"expected\":\"The address of the pool to remove\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the remote pool (encoded to support non-EVM chains)\\\"};duplicate=1\",\"expected\":\"The address of the remote pool (encoded to support non-EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address receiving the tokens\\\"};duplicate=1\",\"expected\":\"The address receiving the tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address that attempted the action\\\"};duplicate=1\",\"expected\":\"The address that attempted the action\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to check for permission\\\"};duplicate=1\",\"expected\":\"The address to check for permission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be added.\\\"};duplicate=1\",\"expected\":\"The addresses to be added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be removed.\\\"};duplicate=1\",\"expected\":\"The addresses to be removed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The allowed addresses.\\\"};duplicate=1\",\"expected\":\"The allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=1\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=2\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens to lock or burn\\\"};duplicate=1\",\"expected\":\"The amount of tokens to lock or burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens to release or mint\\\"};duplicate=1\",\"expected\":\"The amount of tokens to release or mint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount on the remote chain.\\\"};duplicate=1\",\"expected\":\"The amount on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount that caused the overflow\\\"};duplicate=1\",\"expected\":\"The amount that caused the overflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector being queried\\\"};duplicate=1\",\"expected\":\"The chain selector being queried\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the destination chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the source chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to add the pool for\\\"};duplicate=1\",\"expected\":\"The chain selector to add the pool for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to configure\\\"};duplicate=1\",\"expected\":\"The chain selector to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=1\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=2\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to remove the pool from\\\"};duplicate=1\",\"expected\":\"The chain selector to remove the pool from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=1\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=2\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector where the pool exists\\\"};duplicate=1\",\"expected\":\"The chain selector where the pool exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selectors to configure\\\"};duplicate=1\",\"expected\":\"The chain selectors to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals of the token on the remote chain.\\\"};duplicate=1\",\"expected\":\"The decimals of the token on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the local chain\\\"};duplicate=1\",\"expected\":\"The decimals on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the remote chain\\\"};duplicate=1\",\"expected\":\"The decimals on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded decimal configuration data\\\"};duplicate=1\",\"expected\":\"The encoded decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded token address on the remote chain\\\"};duplicate=1\",\"expected\":\"The encoded token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of decimals\\\"};duplicate=1\",\"expected\":\"The expected number of decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid decimal configuration data\\\"};duplicate=1\",\"expected\":\"The invalid decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid pool address\\\"};duplicate=1\",\"expected\":\"The invalid pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The local amount.\\\"};duplicate=1\",\"expected\":\"The local amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new router contract address\\\"};duplicate=1\",\"expected\":\"The new router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimal places for the token\\\"};duplicate=1\",\"expected\":\"The number of decimal places for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"The number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used on the remote chain\\\"};duplicate=1\",\"expected\":\"The number of decimals used on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\\\"};duplicate=1\",\"expected\":\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address to verify\\\"};duplicate=1\",\"expected\":\"The pool address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=1\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=2\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=3\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain selector for which the rate limits apply.\\\"};duplicate=1\",\"expected\":\"The remote chain selector for which the rate limits apply.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The selector of the chain that already exists\\\"};duplicate=1\",\"expected\":\"The selector of the chain that already exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address to check\\\"};duplicate=1\",\"expected\":\"The token address to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract address\\\"};duplicate=1\",\"expected\":\"The token contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token managed by this pool. Currently supports one token per pool.\\\"};duplicate=1\",\"expected\":\"The token managed by this pool. Currently supports one token per pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to be managed by this pool\\\"};duplicate=1\",\"expected\":\"The token to be managed by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token's decimal places on this chain\\\"};duplicate=1\",\"expected\":\"The token's decimal places on this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function is a virtual placeholder within the main lockOrBurn workflow:\\\"};duplicate=1\",\"expected\":\"This function is a virtual placeholder within the main lockOrBurn workflow:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function is a virtual placeholder within the main releaseOrMint workflow:\\\"};duplicate=1\",\"expected\":\"This function is a virtual placeholder within the main releaseOrMint workflow:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\\\"};duplicate=1\",\"expected\":\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a caller lacks the required permissions for an operation.\\\"};duplicate=1\",\"expected\":\"Thrown when a caller lacks the required permissions for an operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\\\"};duplicate=1\",\"expected\":\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a token amount conversion would result in an arithmetic overflow.\\\"};duplicate=1\",\"expected\":\"Thrown when a token amount conversion would result in an arithmetic overflow.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\\\"};duplicate=1\",\"expected\":\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when array parameters have different lengths in multi-chain operations.\\\"};duplicate=1\",\"expected\":\"Thrown when array parameters have different lengths in multi-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a chain that is already configured.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a chain that is already configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a pool that is already configured for a chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a pool that is already configured for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to modify the allowlist when the feature is disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to modify the allowlist when the feature is disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with a token that is not supported by the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with a token that is not supported by the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with an unconfigured chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with an unconfigured chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use a chain that is not authorized.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use a chain that is not authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) for critical contract addresses.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) for critical contract addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unconfigured or invalid remote pool address.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unconfigured or invalid remote pool address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the Risk Management Network has flagged operations as unsafe.\\\"};duplicate=1\",\"expected\":\"Thrown when the Risk Management Network has flagged operations as unsafe.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when token decimals don't match the expected configuration.\\\"};duplicate=1\",\"expected\":\"Thrown when token decimals don't match the expected configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=1\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=2\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Transfers tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the chain is configured in the pool\\\"};duplicate=1\",\"expected\":\"True if the chain is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the contract implements the interface\\\"};duplicate=1\",\"expected\":\"True if the contract implements the interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool is configured for the chain\\\"};duplicate=1\",\"expected\":\"True if the pool is configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the token is supported by this pool\\\"};duplicate=1\",\"expected\":\"True if the token is supported by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=27\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=28\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=29\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=30\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=31\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=32\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=33\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=34\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=35\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=36\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=37\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=38\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=39\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=40\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=41\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=42\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=43\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=44\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=45\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=46\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=47\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=48\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=49\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=50\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=51\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates both inbound and outbound rate limits\\\"};duplicate=1\",\"expected\":\"Updates both inbound and outbound rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates chain configurations in bulk.\\\"};duplicate=1\",\"expected\":\"Updates chain configurations in bulk.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates rate limit configurations for multiple chains.\\\"};duplicate=1\",\"expected\":\"Updates rate limit configurations for multiple chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\\\"};duplicate=1\",\"expected\":\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the router contract address.\\\"};duplicate=1\",\"expected\":\"Updates the router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=1\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=2\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updating chain configurations Only callable by owner.\\\"};duplicate=1\",\"expected\":\"Updating chain configurations Only callable by owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\\\"};duplicate=1\",\"expected\":\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=1\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=2\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates both rate limit configurations\\\"};duplicate=1\",\"expected\":\"Validates both rate limit configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=1\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=2\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates non-zero addresses for token, router, and RMN proxy\\\"};duplicate=1\",\"expected\":\"Validates non-zero addresses for token, router, and RMN proxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the chain exists\\\"};duplicate=1\",\"expected\":\"Validates that the chain exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the decoded value is within uint8 range\\\"};duplicate=1\",\"expected\":\"Validates that the decoded value is within uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=1\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=2\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies if a pool address is configured for a remote chain.\\\"};duplicate=1\",\"expected\":\"Verifies if a pool address is configured for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies token decimals match if ERC20Metadata is supported\\\"};duplicate=1\",\"expected\":\"Verifies token decimals match if ERC20Metadata is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actual\\\"};duplicate=1\",\"expected\":\"actual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=2\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=3\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=4\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=5\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=6\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=1\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=2\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=3\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=4\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=4\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=5\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"caller\\\"};duplicate=1\",\"expected\":\"caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=1\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event upon successful locking\\\"};duplicate=1\",\"expected\":\"event upon successful locking\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event.\\\"};duplicate=1\",\"expected\":\"event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=2\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"expected\\\"};duplicate=1\",\"expected\":\"expected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not an authorized offRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not an authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not the authorized onRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not the authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=1\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=2\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=3\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool address is empty\\\"};duplicate=1\",\"expected\":\"if the pool address is empty\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is already configured for this chain\\\"};duplicate=1\",\"expected\":\"if the pool is already configured for this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is not configured for the chain\\\"};duplicate=1\",\"expected\":\"if the pool is not configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=1\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=2\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=1\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=2\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfigs\\\"};duplicate=1\",\"expected\":\"inboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localDecimals\\\"};duplicate=1\",\"expected\":\"localDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRouter\\\"};duplicate=1\",\"expected\":\"newRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=1\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=2\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfigs\\\"};duplicate=1\",\"expected\":\"outboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Active rate limiter for sending tokens\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Active rate limiter for sending tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=1\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=2\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector: Chain identifier\\\"};duplicate=1\",\"expected\":\"remoteChainSelector: Chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=1\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=10\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=11\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=12\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=13\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=14\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=15\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=2\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=3\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=4\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=5\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=6\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=7\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=8\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=9\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelectors\\\"};duplicate=1\",\"expected\":\"remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=1\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=2\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=1\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=2\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=3\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=4\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=5\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddresses: List of authorized pool addresses on the remote chain\\\"};duplicate=1\",\"expected\":\"remotePoolAddresses: List of authorized pool addresses on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePools: Set of authorized pool addresses (stored as hashes)\\\"};duplicate=1\",\"expected\":\"remotePools: Set of authorized pool addresses (stored as hashes)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=1\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=2\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=1\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=2\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=1\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=2\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true is enabled, false if not.\\\"};duplicate=1\",\"expected\":\"true is enabled, false if not.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=1\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=2\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=13\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=14\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=15\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=3\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=4\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=5\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=6\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when successful.\\\"};duplicate=1\",\"expected\":\"when successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when the pool is successfully added.\\\"};duplicate=1\",\"expected\":\"when the pool is successfully added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.1/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You are viewing API documentation for CCIP v1.6.2, which is the latest version.\\\"};duplicate=1\",\"expected\":\"You are viewing API documentation for CCIP v1.6.2, which is the latest version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _lockOrBurn(uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _lockOrBurn(uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/token-pool#_lockorburn\\\"};duplicate=1\",\"expected\":\"_lockOrBurn -> /ccip/api-reference/evm/v1.6.2/token-pool#_lockorburn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier that specifies the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier that specifies the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the token's burnFrom(address(this), amount) function.\\\"};duplicate=1\",\"expected\":\"Calls the token's burnFrom(address(this), amount) function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\\\"};duplicate=1\",\"expected\":\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that implements the token burning logic for the BurnFromMintTokenPool.\\\"};duplicate=1\",\"expected\":\"Internal function that implements the token burning logic for the BurnFromMintTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overrides the virtual\\\"};duplicate=1\",\"expected\":\"Overrides the virtual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the specific \\\\\\\"burn\\\\\\\" implementation for the BurnFromMintTokenPool.\\\"};duplicate=1\",\"expected\":\"Provides the specific \\\"burn\\\" implementation for the BurnFromMintTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Relies on the token allowance set in the constructor to authorize the burn operation from the pool's own address.\\\"};duplicate=1\",\"expected\":\"Relies on the token allowance set in the constructor to authorize the burn operation from the pool's own address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the BurnFromMintTokenPool contract with initial configuration.\\\"};duplicate=1\",\"expected\":\"Sets up the BurnFromMintTokenPool contract with initial configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract identifier \\\\\\\"BurnFromMintTokenPool 1.6.2\\\\\\\"\\\"};duplicate=1\",\"expected\":\"The contract identifier \\\"BurnFromMintTokenPool 1.6.2\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to burn\\\"};duplicate=1\",\"expected\":\"The number of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the base TokenPool contract:\\\"};duplicate=1\",\"expected\":\"function from the base TokenPool contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-mint-erc20\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_ccipReceive\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the contract implements specific interfaces.\\\"};duplicate=1\",\"expected\":\"Determines whether the contract implements specific interfaces.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns false or reverts: only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If returns false or reverts: only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns true: tokens are transferred and ccipReceive is called atomically\\\"};duplicate=1\",\"expected\":\"If returns true: tokens are transferred and ccipReceive is called atomically\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection with CCIP-specific behavior:\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection with CCIP-specific behavior:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to be implemented by derived contracts for custom message handling.\\\"};duplicate=1\",\"expected\":\"Internal function to be implemented by derived contracts for custom message handling.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides access to the immutable router address used for message validation.\\\"};duplicate=1\",\"expected\":\"Provides access to the immutable router address used for message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\\\"};duplicate=1\",\"expected\":\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current CCIP router address\\\"};duplicate=1\",\"expected\":\"The current CCIP router address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used by CCIP to check if ccipReceive is available\\\"};duplicate=1\",\"expected\":\"Used by CCIP to check if ccipReceive is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\\\"};duplicate=1\",\"expected\":\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVMTokenAmount { address token; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct EVMTokenAmount { address token; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\\\"};duplicate=1\",\"expected\":\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\\\"};duplicate=1\",\"expected\":\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVMTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GENERIC_EXTRA_ARGS_V2_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GENERIC_EXTRA_ARGS_V2_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GenericExtraArgsV2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVMExtraArgsV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_ACCOUNT_BYTE_SIZE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_ACCOUNT_BYTE_SIZE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V1)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V1)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V2)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_svmArgsToBytes\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_svmArgsToBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMExtraArgsV1\\\",\\\"url\\\":\\\"#evmextraargsv1\\\"};duplicate=1\",\"expected\":\"EVMExtraArgsV1 -> #evmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> #genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"url\\\":\\\"#svmextraargsv1\\\"};duplicate=1\",\"expected\":\"SVMExtraArgsV1 -> #svmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the token receiver\\\"};duplicate=1\",\"expected\":\"Address of the token receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows specifying out-of-order execution preference\\\"};duplicate=1\",\"expected\":\"Allows specifying out-of-order execution preference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap indicating which accounts are writable\\\"};duplicate=1\",\"expected\":\"Bitmap indicating which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Changes to this struct require RMN maintainer notification\\\"};duplicate=1\",\"expected\":\"Changes to this struct require RMN maintainer notification\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\\\"};duplicate=1\",\"expected\":\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compute units for execution on Solana\\\"};duplicate=1\",\"expected\":\"Compute units for execution on Solana\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures compute units (Solana's equivalent to gas)\\\"};duplicate=1\",\"expected\":\"Configures compute units (Solana's equivalent to gas)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Controls message execution order\\\"};duplicate=1\",\"expected\":\"Controls message execution order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core structure for token transfers used by the Risk Management Network (RMN):\\\"};duplicate=1\",\"expected\":\"Core structure for token transfers used by the Risk Management Network (RMN):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default value for allowOutOfOrderExecution varies by chain\\\"};duplicate=1\",\"expected\":\"Default value for allowOutOfOrderExecution varies by chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines token receiver details\\\"};duplicate=1\",\"expected\":\"Defines token receiver details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes EVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes EVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes GenericExtraArgsV2 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes GenericExtraArgsV2 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes SVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes SVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enhanced version of extra arguments adding execution order control:\\\"};duplicate=1\",\"expected\":\"Enhanced version of extra arguments adding execution order control:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First version of extra arguments, supporting basic gas limit configuration.\\\"};duplicate=1\",\"expected\":\"First version of extra arguments, supporting basic gas limit configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit for execution on destination chain\\\"};duplicate=1\",\"expected\":\"Gas limit for execution on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Includes configurable gas limit\\\"};duplicate=1\",\"expected\":\"Includes configurable gas limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Lists additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Lists additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of overhead accounts needed for message execution on SVM.\\\"};duplicate=1\",\"expected\":\"Number of overhead accounts needed for message execution on SVM.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents token amounts in their chain-specific format\\\"};duplicate=1\",\"expected\":\"Represents token amounts in their chain-specific format\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Solana VM-specific arguments for cross-chain messages:\\\"};duplicate=1\",\"expected\":\"Solana VM-specific arguments for cross-chain messages:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Some chains enforce specific values and will revert if not set correctly\\\"};duplicate=1\",\"expected\":\"Some chains enforce specific values and will revert if not set correctly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifies which accounts are writable\\\"};duplicate=1\",\"expected\":\"Specifies which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V1 extra arguments specific to Solana VM-based chains.\\\"};duplicate=1\",\"expected\":\"Structure for V1 extra arguments specific to Solana VM-based chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V2 extra arguments in cross-chain messages.\\\"};duplicate=1\",\"expected\":\"Structure for V2 extra arguments in cross-chain messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token amounts in CCIP messages.\\\"};duplicate=1\",\"expected\":\"Structure representing token amounts in CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SVM extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The SVM extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V1 extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V1 extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V2 generic extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V2 generic extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=1\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=2\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\\\"};duplicate=1\",\"expected\":\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for Solana VM extra arguments.\\\"};duplicate=1\",\"expected\":\"The identifier tag for Solana VM extra arguments.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\\\\\"CCIP EVMExtraArgsV1\\\\\\\"))).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\"CCIP EVMExtraArgsV1\\\"))).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maximum number of accounts that can be passed in SVMExtraArgs.\\\"};duplicate=1\",\"expected\":\"The maximum number of accounts that can be passed in SVMExtraArgs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The size of each SVM account address in bytes.\\\"};duplicate=1\",\"expected\":\"The size of each SVM account address in bytes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address on the local chain\\\"};duplicate=1\",\"expected\":\"Token address on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=1\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=2\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accounts\\\"};duplicate=1\",\"expected\":\"accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=1\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=2\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=1\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=1\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"computeUnits\\\"};duplicate=1\",\"expected\":\"computeUnits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=2\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenReceiver\\\"};duplicate=1\",\"expected\":\"tokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=1\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=2\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=3\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=4\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=5\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=6\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=7\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=1\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=2\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=3\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=4\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=5\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DestinationChainNotEnabled(uint64 destChainSelector);\\\"};duplicate=1\",\"expected\":\"error DestinationChainNotEnabled(uint64 destChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ExtraArgOutOfOrderExecutionMustBeTrue();\\\"};duplicate=1\",\"expected\":\"error ExtraArgOutOfOrderExecutionMustBeTrue();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error FeeTokenNotSupported(address token);\\\"};duplicate=1\",\"expected\":\"error FeeTokenNotSupported(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\\\"};duplicate=1\",\"expected\":\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsData();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsData();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsTag();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsTag();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\\\"};duplicate=1\",\"expected\":\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenReceiver();\\\"};duplicate=1\",\"expected\":\"error InvalidTokenReceiver();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageComputeUnitLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageComputeUnitLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\\\"};duplicate=1\",\"expected\":\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageGasLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageGasLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\\\"};duplicate=1\",\"expected\":\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\\\"};duplicate=1\",\"expected\":\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\\\"};duplicate=1\",\"expected\":\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySuiExtraArgsReceiverObjectIds(uint256 numReceiverObjectIds, uint256 maxReceiverObjectIds);\\\"};duplicate=1\",\"expected\":\"error TooManySuiExtraArgsReceiverObjectIds(uint256 numReceiverObjectIds, uint256 maxReceiverObjectIds);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\\\"};duplicate=1\",\"expected\":\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function convertTokenAmount(address fromToken, uint256 fromTokenAmount, address toToken) public view returns (uint256);\\\"};duplicate=1\",\"expected\":\"function convertTokenAmount(address fromToken, uint256 fromTokenAmount, address toToken) public view returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getDestChainConfig(uint64 destChainSelector) external view returns (DestChainConfig memory);\\\"};duplicate=1\",\"expected\":\"function getDestChainConfig(uint64 destChainSelector) external view returns (DestChainConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getFeeTokens() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getFeeTokens() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getStaticConfig() external view returns (StaticConfig memory);\\\"};duplicate=1\",\"expected\":\"function getStaticConfig() external view returns (StaticConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenTransferFeeConfig(uint64 destChainSelector, address token) external view returns (TokenTransferFeeConfig memory);\\\"};duplicate=1\",\"expected\":\"function getTokenTransferFeeConfig(uint64 destChainSelector, address token) external view returns (TokenTransferFeeConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getValidatedFee(uint64 destChainSelector, Client.EVM2AnyMessage calldata message) external view returns (uint256 feeTokenAmount);\\\"};duplicate=1\",\"expected\":\"function getValidatedFee(uint64 destChainSelector, Client.EVM2AnyMessage calldata message) external view returns (uint256 feeTokenAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant typeAndVersion = \\\\\\\"FeeQuoter 1.6.2\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant typeAndVersion = \\\"FeeQuoter 1.6.2\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\\\"};duplicate=1\",\"expected\":\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\\\"};duplicate=1\",\"expected\":\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant FEE_BASE_DECIMALS = 36;\\\"};duplicate=1\",\"expected\":\"uint256 public constant FEE_BASE_DECIMALS = 36;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestinationChainNotEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestinationChainNotEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExtraArgOutOfOrderExecutionMustBeTrue\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExtraArgOutOfOrderExecutionMustBeTrue\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FEE_BASE_DECIMALS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FEE_BASE_DECIMALS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenNotSupported\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenNotSupported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidChainFamilySelector\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidChainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsTag\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsTag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSVMExtraArgsWritableBitmap\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSVMExtraArgsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenReceiver\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageComputeUnitLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageComputeUnitLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageFeeTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageFeeTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageGasLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageGasLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageTooLarge\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageTooLarge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaleGasPrice\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaleGasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySVMExtraArgsAccounts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySVMExtraArgsAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySuiExtraArgsReceiverObjectIds\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySuiExtraArgsReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UnsupportedNumberOfTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UnsupportedNumberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"convertTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"convertTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getDestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getDestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getFeeTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getFeeTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getStaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getStaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getValidatedFee\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getValidatedFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Internal\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/internal#state-variables\\\"};duplicate=1\",\"expected\":\"Internal -> /ccip/api-reference/evm/v1.6.2/internal#state-variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig.maxFeeJuelsPerMsg\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig.maxFeeJuelsPerMsg -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"destination chain config\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"destination chain config -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"destination chain config\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=2\",\"expected\":\"destination chain config -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getDestChainConfig()\\\",\\\"url\\\":\\\"#getdestchainconfig\\\"};duplicate=1\",\"expected\":\"getDestChainConfig() -> #getdestchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getStaticConfig()\\\",\\\"url\\\":\\\"#getstaticconfig\\\"};duplicate=1\",\"expected\":\"getStaticConfig() -> #getstaticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\").\\\"};duplicate=1\",\"expected\":\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Actual message size that was too large\\\"};duplicate=1\",\"expected\":\"Actual message size that was too large\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the LINK token contract\\\"};duplicate=1\",\"expected\":\"Address of the LINK token contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount in source token\\\"};duplicate=1\",\"expected\":\"Amount in source token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of supported fee token addresses\\\"};duplicate=1\",\"expected\":\"Array of supported fee token addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Basis points charged on token transfers (multiples of 0.1bps, or 1e-5)\\\"};duplicate=1\",\"expected\":\"Basis points charged on token transfers (multiples of 0.1bps, or 1e-5)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated message fee in Juels\\\"};duplicate=1\",\"expected\":\"Calculated message fee in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the validated fee for sending a cross-chain message.\\\"};duplicate=1\",\"expected\":\"Calculates the validated fee for sending a cross-chain message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client.EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Client.EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains global limits and settings that cannot be changed after deployment. Retrieved via\\\"};duplicate=1\",\"expected\":\"Contains global limits and settings that cannot be changed after deployment. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a token amount from one token to another using current prices.\\\"};duplicate=1\",\"expected\":\"Converts a token amount from one token to another using current prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability bytes overhead, must be ≥ CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\"};duplicate=1\",\"expected\":\"Data availability bytes overhead, must be ≥ CCIP_LOCK_OR_BURN_V1_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability cost (for rollups)\\\"};duplicate=1\",\"expected\":\"Data availability cost (for rollups)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability gas charged for overhead costs (e.g., OCR)\\\"};duplicate=1\",\"expected\":\"Data availability gas charged for overhead costs (e.g., OCR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged for token transfers on destination chain\\\"};duplicate=1\",\"expected\":\"Default gas charged for token transfers on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged per byte of data payload\\\"};duplicate=1\",\"expected\":\"Default gas charged per byte of data payload\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas limit for transactions\\\"};duplicate=1\",\"expected\":\"Default gas limit for transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default token fee per transfer in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Default token fee per transfer in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines all fee calculation and validation parameters for a specific destination chain. Retrieved via\\\"};duplicate=1\",\"expected\":\"Defines all fee calculation and validation parameters for a specific destination chain. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines custom fee parameters for token transfers. When not enabled, default values from the\\\"};duplicate=1\",\"expected\":\"Defines custom fee parameters for token transfers. When not enabled, default values from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain configuration\\\"};duplicate=1\",\"expected\":\"Destination chain configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=1\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=2\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=3\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Equivalent amount in target token\\\"};duplicate=1\",\"expected\":\"Equivalent amount in target token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execution gas cost on destination chain\\\"};duplicate=1\",\"expected\":\"Execution gas cost on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee amount in the message's fee token denomination\\\"};duplicate=1\",\"expected\":\"Fee amount in the message's fee token denomination\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flat network fee for messages in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Flat network fee for messages in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged on top of gasLimit to cover destination chain costs\\\"};duplicate=1\",\"expected\":\"Gas charged on top of gasLimit to cover destination chain costs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged to execute the token transfer on destination chain\\\"};duplicate=1\",\"expected\":\"Gas charged to execute the token transfer on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas units charged per byte needing data availability\\\"};duplicate=1\",\"expected\":\"Gas units charged per byte needing data availability\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the configuration for a destination chain.\\\"};duplicate=1\",\"expected\":\"Gets the configuration for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the list of supported fee tokens.\\\"};duplicate=1\",\"expected\":\"Gets the list of supported fee tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the static configuration of the FeeQuoter.\\\"};duplicate=1\",\"expected\":\"Gets the static configuration of the FeeQuoter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the token transfer fee configuration for a specific token and destination chain.\\\"};duplicate=1\",\"expected\":\"Gets the token transfer fee configuration for a specific token and destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"High gas charged per byte of data payload (for EIP-7623 compliance)\\\"};duplicate=1\",\"expected\":\"High gas charged per byte of data payload (for EIP-7623 compliance)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed fee in Juels per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed fee in Juels per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed message size\\\"};duplicate=1\",\"expected\":\"Maximum allowed message size\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of accounts\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of receiver object IDs\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of receiver object IDs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of tokens per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of tokens per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum data payload size in bytes\\\"};duplicate=1\",\"expected\":\"Maximum data payload size in bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee per token transfer in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Maximum fee per token transfer in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee that can be charged for a message in Juels\\\"};duplicate=1\",\"expected\":\"Maximum fee that can be charged for a message in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum gas limit for messages targeting EVMs\\\"};duplicate=1\",\"expected\":\"Maximum gas limit for messages targeting EVMs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum number of distinct ERC20 tokens per message\\\"};duplicate=1\",\"expected\":\"Maximum number of distinct ERC20 tokens per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message to calculate fee for\\\"};duplicate=1\",\"expected\":\"Message to calculate fee for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum fee per token transfer in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Minimum fee per token transfer in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for data availability gas (multiples of bps, or 0.0001)\\\"};duplicate=1\",\"expected\":\"Multiplier for data availability gas (multiples of bps, or 0.0001)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for gas costs (1e18 based, e.g., 11e17 = 10% extra cost)\\\"};duplicate=1\",\"expected\":\"Multiplier for gas costs (1e18 based, e.g., 11e17 = 10% extra cost)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network premium\\\"};duplicate=1\",\"expected\":\"Network premium\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts in the extra args\\\"};duplicate=1\",\"expected\":\"Number of accounts in the extra args\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts provided\\\"};duplicate=1\",\"expected\":\"Number of accounts provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of receiver object IDs provided\\\"};duplicate=1\",\"expected\":\"Number of receiver object IDs provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of tokens in the message\\\"};duplicate=1\",\"expected\":\"Number of tokens in the message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all tokens that can be used to pay for cross-chain message fees.\\\"};duplicate=1\",\"expected\":\"Returns all tokens that can be used to pay for cross-chain message fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns fee and validation parameters specific to the destination chain.\\\"};duplicate=1\",\"expected\":\"Returns fee and validation parameters specific to the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns immutable configuration values set at deployment.\\\"};duplicate=1\",\"expected\":\"Returns immutable configuration values set at deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the custom fee configuration for a token. If not enabled, default values from the\\\"};duplicate=1\",\"expected\":\"Returns the custom fee configuration for a token. If not enabled, default values from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Selector identifying the destination chain's family (see\\\"};duplicate=1\",\"expected\":\"Selector identifying the destination chain's family (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source token address\\\"};duplicate=1\",\"expected\":\"Source token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing fee and validation configuration for a destination chain.\\\"};duplicate=1\",\"expected\":\"Structure containing fee and validation configuration for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing immutable FeeQuoter configuration set at deployment.\\\"};duplicate=1\",\"expected\":\"Structure containing immutable FeeQuoter configuration set at deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing the token transfer fee configuration for a specific token on a destination chain.\\\"};duplicate=1\",\"expected\":\"Structure representing the token transfer fee configuration for a specific token on a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Target token address\\\"};duplicate=1\",\"expected\":\"Target token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The base decimals used for fee calculations to maintain precision.\\\"};duplicate=1\",\"expected\":\"The base decimals used for fee calculations to maintain precision.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=1\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The disabled destination chain selector\\\"};duplicate=1\",\"expected\":\"The disabled destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid chain family selector\\\"};duplicate=1\",\"expected\":\"The invalid chain family selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The provided writable bitmap\\\"};duplicate=1\",\"expected\":\"The provided writable bitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The staleness threshold in seconds\\\"};duplicate=1\",\"expected\":\"The staleness threshold in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The time passed since last update in seconds\\\"};duplicate=1\",\"expected\":\"The time passed since last update in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The type and version of the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"The type and version of the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported fee token address\\\"};duplicate=1\",\"expected\":\"The unsupported fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported token address\\\"};duplicate=1\",\"expected\":\"The unsupported token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Threshold at which billing switches from base to high rate\\\"};duplicate=1\",\"expected\":\"Threshold at which billing switches from base to high rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\\\"};duplicate=1\",\"expected\":\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unsupported or invalid chain family selector is used during message validation.\\\"};duplicate=1\",\"expected\":\"Thrown when an unsupported or invalid chain family selector is used during message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to get the price or fee for an unsupported token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to get the price or fee for an unsupported token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to send a message to a disabled destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to send a message to a disabled destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unsupported token for fee payment.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unsupported token for fee payment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when extra args data is missing or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when extra args data is missing or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\\\"};duplicate=1\",\"expected\":\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\\\"};duplicate=1\",\"expected\":\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the extra args tag is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"Thrown when the extra args tag is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the gas price for a destination chain is stale.\\\"};duplicate=1\",\"expected\":\"Thrown when the gas price for a destination chain is stale.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\\\"};duplicate=1\",\"expected\":\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message data payload exceeds the maximum allowed size.\\\"};duplicate=1\",\"expected\":\"Thrown when the message data payload exceeds the maximum allowed size.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the number of tokens in a message exceeds the maximum allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when the number of tokens in a message exceeds the maximum allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\\\"};duplicate=1\",\"expected\":\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many accounts are specified in SVM (Solana) extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many accounts are specified in SVM (Solana) extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many receiver object IDs are specified in SUI extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many receiver object IDs are specified in SUI extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds before a token price is considered stale\\\"};duplicate=1\",\"expected\":\"Time in seconds before a token price is considered stale\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds before gas price is considered stale (0 = disabled)\\\"};duplicate=1\",\"expected\":\"Time in seconds before gas price is considered stale (0 = disabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address\\\"};duplicate=1\",\"expected\":\"Token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token transfer fee configuration for the token\\\"};duplicate=1\",\"expected\":\"Token transfer fee configuration for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token transfer fees\\\"};duplicate=1\",\"expected\":\"Token transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Useful for converting fee amounts between tokens using current token prices.\\\"};duplicate=1\",\"expected\":\"Useful for converting fee amounts between tokens using current token prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the message, destination chain, and fee token before calculating the total fee. The fee includes:\\\"};duplicate=1\",\"expected\":\"Validates the message, destination chain, and fee token before calculating the total fee. The fee includes:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this destination chain is enabled\\\"};duplicate=1\",\"expected\":\"Whether this destination chain is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this token has custom transfer fees\\\"};duplicate=1\",\"expected\":\"Whether this token has custom transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether to enforce allowOutOfOrderExecution extraArg to be true\\\"};duplicate=1\",\"expected\":\"Whether to enforce allowOutOfOrderExecution extraArg to be true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actualSize\\\"};duplicate=1\",\"expected\":\"actualSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"are used instead.\\\"};duplicate=1\",\"expected\":\"are used instead.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"are used.\\\"};duplicate=1\",\"expected\":\"are used.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=2\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=1\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=2\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"deciBps\\\"};duplicate=1\",\"expected\":\"deciBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenDestGasOverhead\\\"};duplicate=1\",\"expected\":\"defaultTokenDestGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenFeeUSDCents\\\"};duplicate=1\",\"expected\":\"defaultTokenFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTxGasLimit\\\"};duplicate=1\",\"expected\":\"defaultTxGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destBytesOverhead\\\"};duplicate=1\",\"expected\":\"destBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=3\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=4\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=5\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityMultiplierBps\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityMultiplierBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityOverheadGas\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityOverheadGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=1\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=2\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerDataAvailabilityByte\\\"};duplicate=1\",\"expected\":\"destGasPerDataAvailabilityByte\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteBase\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteBase\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteHigh\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteThreshold\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"enforceOutOfOrder\\\"};duplicate=1\",\"expected\":\"enforceOutOfOrder\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromTokenAmount\\\"};duplicate=1\",\"expected\":\"fromTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromToken\\\"};duplicate=1\",\"expected\":\"fromToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasMultiplierWeiPerEth\\\"};duplicate=1\",\"expected\":\"gasMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"gasPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=1\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=2\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"linkToken\\\"};duplicate=1\",\"expected\":\"linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxAccounts\\\"};duplicate=1\",\"expected\":\"maxAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxDataBytes\\\"};duplicate=1\",\"expected\":\"maxDataBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=1\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=2\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeUSDCents\\\"};duplicate=1\",\"expected\":\"maxFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=1\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=2\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxPerMsgGasLimit\\\"};duplicate=1\",\"expected\":\"maxPerMsgGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxReceiverObjectIds\\\"};duplicate=1\",\"expected\":\"maxReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSize\\\"};duplicate=1\",\"expected\":\"maxSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=1\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minFeeUSDCents\\\"};duplicate=1\",\"expected\":\"minFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"msgFeeJuels\\\"};duplicate=1\",\"expected\":\"msgFeeJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkFeeUSDCents\\\"};duplicate=1\",\"expected\":\"networkFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=1\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=2\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numReceiverObjectIds\\\"};duplicate=1\",\"expected\":\"numReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numberOfTokens\\\"};duplicate=1\",\"expected\":\"numberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"threshold\\\"};duplicate=1\",\"expected\":\"threshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timePassed\\\"};duplicate=1\",\"expected\":\"timePassed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"toToken\\\"};duplicate=1\",\"expected\":\"toToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"tokenPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=1\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=2\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=3\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=4\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=5\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=6\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=10\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=11\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=12\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=13\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=14\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=15\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=16\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=10\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=11\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=12\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=13\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=4\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=5\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=6\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=7\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=8\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=9\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint96\\\"};duplicate=1\",\"expected\":\"uint96\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if the given chain ID is supported for sending/receiving.\\\"};duplicate=1\",\"expected\":\"Checks if the given chain ID is supported for sending/receiving.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/i-type-and-version\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for Aptos chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector APTOS\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for Aptos chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector APTOS\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for EVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector EVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for EVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector EVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for SVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for SVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for Sui chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SUI\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for Sui chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SUI\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for TVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector TVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for TVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector TVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rebalancer;\\\"};duplicate=1\",\"expected\":\"address internal s_rebalancer;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_acceptLiquidity;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_acceptLiquidity;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InsufficientLiquidity();\\\"};duplicate=1\",\"expected\":\"error InsufficientLiquidity();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error LiquidityNotAccepted();\\\"};duplicate=1\",\"expected\":\"error LiquidityNotAccepted();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RebalancerSet(address oldRebalancer, address newRebalancer);\\\"};duplicate=1\",\"expected\":\"event RebalancerSet(address oldRebalancer, address newRebalancer);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _releaseOrMint(address receiver, uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _releaseOrMint(address receiver, uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function canAcceptLiquidity() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function canAcceptLiquidity() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRebalancer() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRebalancer() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function provideLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function provideLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRebalancer(address rebalancer) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRebalancer(address rebalancer) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function withdrawLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function withdrawLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant override typeAndVersion = \\\\\\\"LockReleaseTokenPool 1.6.2\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant override typeAndVersion = \\\"LockReleaseTokenPool 1.6.2\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InsufficientLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InsufficientLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LiquidityNotAccepted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LiquidityNotAccepted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RebalancerSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RebalancerSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"canAcceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"canAcceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_acceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"provideLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"provideLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"withdrawLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"withdrawLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/token-pool#_releaseormint\\\"};duplicate=1\",\"expected\":\"_releaseOrMint -> /ccip/api-reference/evm/v1.6.2/token-pool#_releaseormint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"url\\\":\\\"#setrebalancer\\\"};duplicate=1\",\"expected\":\"setRebalancer -> #setrebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier specifying the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier specifying the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the RMN proxy contract\\\"};duplicate=1\",\"expected\":\"Address of the RMN proxy contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the router contract\\\"};duplicate=1\",\"expected\":\"Address of the router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds external liquidity to the pool.\\\"};duplicate=1\",\"expected\":\"Adds external liquidity to the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the owner to update the liquidity manager (rebalancer) address.\\\"};duplicate=1\",\"expected\":\"Allows the owner to update the liquidity manager (rebalancer) address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to add liquidity to the pool:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to add liquidity to the pool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to withdraw liquidity:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to withdraw liquidity:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP handles mint/burn operations on other chains\\\"};duplicate=1\",\"expected\":\"CCIP handles mint/burn operations on other chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can be used in conjunction with TokenAdminRegistry updates\\\"};duplicate=1\",\"expected\":\"Can be used in conjunction with TokenAdminRegistry updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures decimal precision for local tokens\\\"};duplicate=1\",\"expected\":\"Configures decimal precision for local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the pool can accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Determines whether the pool can accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is transferred from an older pool version during an upgrade.\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is transferred from an older pool version during an upgrade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rebalancer (liquidity manager) address is updated via\\\"};duplicate=1\",\"expected\":\"Emitted when the rebalancer (liquidity manager) address is updated via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enables smooth transition of liquidity and transactions\\\"};duplicate=1\",\"expected\":\"Enables smooth transition of liquidity and transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Establishes the initial whitelist\\\"};duplicate=1\",\"expected\":\"Establishes the initial whitelist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Facilitates pool upgrades by transferring liquidity from an older pool version:\\\"};duplicate=1\",\"expected\":\"Facilitates pool upgrades by transferring liquidity from an older pool version:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\\\"};duplicate=1\",\"expected\":\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial list of authorized addresses\\\"};duplicate=1\",\"expected\":\"Initial list of authorized addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the token pool with its configuration parameters:\\\"};duplicate=1\",\"expected\":\"Initializes the token pool with its configuration parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that implements the token release logic for a LockReleaseTokenPool.\\\"};duplicate=1\",\"expected\":\"Internal function that implements the token release logic for a LockReleaseTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Links to the RMN proxy and router\\\"};duplicate=1\",\"expected\":\"Links to the RMN proxy and router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=3\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=1\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=2\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only works if the pool accepts liquidity\\\"};duplicate=1\",\"expected\":\"Only works if the pool accepts liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overrides the virtual\\\"};duplicate=1\",\"expected\":\"Overrides the virtual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\\\"};duplicate=1\",\"expected\":\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the specific \\\\\\\"release\\\\\\\" implementation for the LockReleaseTokenPool.\\\"};duplicate=1\",\"expected\":\"Provides the specific \\\"release\\\" implementation for the LockReleaseTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes liquidity from the pool.\\\"};duplicate=1\",\"expected\":\"Removes liquidity from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires prior token approval\\\"};duplicate=1\",\"expected\":\"Requires prior token approval\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires sufficient pool balance\\\"};duplicate=1\",\"expected\":\"Requires sufficient pool balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires this pool to be set as rebalancer in the source pool\\\"};duplicate=1\",\"expected\":\"Requires this pool to be set as rebalancer in the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rebalancer address.\\\"};duplicate=1\",\"expected\":\"Returns the current rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\\\"};duplicate=1\",\"expected\":\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the liquidity acceptance policy\\\"};duplicate=1\",\"expected\":\"Sets the liquidity acceptance policy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the token contract reference\\\"};duplicate=1\",\"expected\":\"Sets up the token contract reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports both atomic and gradual migration strategies\\\"};duplicate=1\",\"expected\":\"Supports both atomic and gradual migration strategies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\\\"};duplicate=1\",\"expected\":\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the new rebalancer\\\"};duplicate=1\",\"expected\":\"The address of the new rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the previous rebalancer\\\"};duplicate=1\",\"expected\":\"The address of the previous rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the source pool\\\"};duplicate=1\",\"expected\":\"The address of the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to receive the tokens\\\"};duplicate=1\",\"expected\":\"The address to receive the tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to provide\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to provide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to transfer\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity transferred\\\"};duplicate=1\",\"expected\":\"The amount of liquidity transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current liquidity manager address\\\"};duplicate=1\",\"expected\":\"The current liquidity manager address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimal precision for the local token\\\"};duplicate=1\",\"expected\":\"The decimal precision for the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\\\\\"wrapped\\\\\\\" token) on all remote chains) is maintained\\\"};duplicate=1\",\"expected\":\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\"wrapped\\\" token) on all remote chains) is maintained\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new rebalancer address to set\\\"};duplicate=1\",\"expected\":\"The new rebalancer address to set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to release\\\"};duplicate=1\",\"expected\":\"The number of tokens to release\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address\\\"};duplicate=1\",\"expected\":\"The source pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to manage\\\"};duplicate=1\",\"expected\":\"The token contract to manage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There is one canonical token on the chain\\\"};duplicate=1\",\"expected\":\"There is one canonical token on the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to withdraw more liquidity than available in the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to withdraw more liquidity than available in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers liquidity from an older pool version.\\\"};duplicate=1\",\"expected\":\"Transfers liquidity from an older pool version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens directly to the caller\\\"};duplicate=1\",\"expected\":\"Transfers tokens directly to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"True if the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rebalancer address.\\\"};duplicate=1\",\"expected\":\"Updates the rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses safeTransfer to send the specified amount of tokens to the receiver.\\\"};duplicate=1\",\"expected\":\"Uses safeTransfer to send the specified amount of tokens to the receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"Whether the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"acceptLiquidity\\\"};duplicate=1\",\"expected\":\"acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=3\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the base TokenPool contract:\\\"};duplicate=1\",\"expected\":\"function from the base TokenPool contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRebalancer\\\"};duplicate=1\",\"expected\":\"newRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"oldRebalancer\\\"};duplicate=1\",\"expected\":\"oldRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rebalancer\\\"};duplicate=1\",\"expected\":\"rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_owner;\\\"};duplicate=1\",\"expected\":\"address private s_owner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_pendingOwner;\\\"};duplicate=1\",\"expected\":\"address private s_pendingOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address newOwner, address pendingOwner);\\\"};duplicate=1\",\"expected\":\"constructor(address newOwner, address pendingOwner);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CannotTransferToSelf();\\\"};duplicate=1\",\"expected\":\"error CannotTransferToSelf();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MustBeProposedOwner();\\\"};duplicate=1\",\"expected\":\"error MustBeProposedOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OwnerCannotBeZero();\\\"};duplicate=1\",\"expected\":\"error OwnerCannotBeZero();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event OwnershipTransferred(address indexed from, address indexed to);\\\"};duplicate=1\",\"expected\":\"event OwnershipTransferred(address indexed from, address indexed to);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function acceptOwnership() external override;\\\"};duplicate=1\",\"expected\":\"function acceptOwnership() external override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function owner() public view override returns (address);\\\"};duplicate=1\",\"expected\":\"function owner() public view override returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferOwnership(address to) public override onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferOwnership(address to) public override onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"modifier onlyOwner();\\\"};duplicate=1\",\"expected\":\"modifier onlyOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CannotTransferToSelf\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CannotTransferToSelf\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MustBeProposedOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MustBeProposedOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnerCannotBeZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnerCannotBeZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnershipTransferred\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnershipTransferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"acceptOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"acceptOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"onlyOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"onlyOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_pendingOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an owner to begin transferring ownership to a new address.\\\"};duplicate=1\",\"expected\":\"Allows an owner to begin transferring ownership to a new address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an ownership transfer to be completed by the recipient.\\\"};duplicate=1\",\"expected\":\"Allows an ownership transfer to be completed by the recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CannotTransferToSelf if attempting to transfer to current owner\\\"};duplicate=1\",\"expected\":\"CannotTransferToSelf if attempting to transfer to current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clears pending owner\\\"};duplicate=1\",\"expected\":\"Clears pending owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current owner initiating the transfer\\\"};duplicate=1\",\"expected\":\"Current owner initiating the transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits OwnershipTransferred event\\\"};duplicate=1\",\"expected\":\"Emits OwnershipTransferred event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an ownership transfer is completed.\\\"};duplicate=1\",\"expected\":\"Emitted when an ownership transfer is completed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the current owner initiates an ownership transfer.\\\"};duplicate=1\",\"expected\":\"Emitted when the current owner initiates an ownership transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\\\"};duplicate=1\",\"expected\":\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with an owner and optionally a pending owner.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with an owner and optionally a pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Modifier that restricts function access to the contract owner.\\\"};duplicate=1\",\"expected\":\"Modifier that restricts function access to the contract owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"New owner\\\"};duplicate=1\",\"expected\":\"New owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnlyCallableByOwner if caller is not the current owner\\\"};duplicate=1\",\"expected\":\"OnlyCallableByOwner if caller is not the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional address to initiate ownership transfer to\\\"};duplicate=1\",\"expected\":\"Optional address to initiate ownership transfer to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous owner\\\"};duplicate=1\",\"expected\":\"Previous owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposed new owner\\\"};duplicate=1\",\"expected\":\"Proposed new owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current owner's address.\\\"};duplicate=1\",\"expected\":\"Returns the current owner's address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with MustBeProposedOwner if caller is not the pending owner.\\\"};duplicate=1\",\"expected\":\"Reverts with MustBeProposedOwner if caller is not the pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OwnerCannotBeZero if newOwner is address(0)\\\"};duplicate=1\",\"expected\":\"Reverts with OwnerCannotBeZero if newOwner is address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets newOwner as the initial owner\\\"};duplicate=1\",\"expected\":\"Sets newOwner as the initial owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current owner\\\"};duplicate=1\",\"expected\":\"The address of the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The initial owner of the contract\\\"};duplicate=1\",\"expected\":\"The initial owner of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\\\"};duplicate=1\",\"expected\":\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the current owner of the contract.\\\"};duplicate=1\",\"expected\":\"The owner is the current owner of the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\\\"};duplicate=1\",\"expected\":\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pending owner is the address to which ownership may be transferred.\\\"};duplicate=1\",\"expected\":\"The pending owner is the address to which ownership may be transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by someone other than the owner.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by someone other than the owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set the owner to address(0).\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set the owner to address(0).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to transfer ownership to the current owner.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to transfer ownership to the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when someone other than the pending owner tries to accept ownership.\\\"};duplicate=1\",\"expected\":\"Thrown when someone other than the pending owner tries to accept ownership.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates owner to the caller\\\"};duplicate=1\",\"expected\":\"Updates owner to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When successful:\\\"};duplicate=1\",\"expected\":\"When successful:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=2\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newOwner\\\"};duplicate=1\",\"expected\":\"newOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pendingOwner\\\"};duplicate=1\",\"expected\":\"pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=2\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/ownable-2-step-msg-sender\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\\\"};duplicate=1\",\"expected\":\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\\\"};duplicate=1\",\"expected\":\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error BucketOverfilled();\\\"};duplicate=1\",\"expected\":\"error BucketOverfilled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DisabledNonZeroRateLimit(Config config);\\\"};duplicate=1\",\"expected\":\"error DisabledNonZeroRateLimit(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRateLimitRate(Config rateLimiterConfig);\\\"};duplicate=1\",\"expected\":\"error InvalidRateLimitRate(Config rateLimiterConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByAdminOrOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByAdminOrOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error RateLimitMustBeDisabled();\\\"};duplicate=1\",\"expected\":\"error RateLimitMustBeDisabled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event ConfigChanged(Config config);\\\"};duplicate=1\",\"expected\":\"event ConfigChanged(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\\\"};duplicate=1\",\"expected\":\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\\\"};duplicate=1\",\"expected\":\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BucketOverfilled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"BucketOverfilled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ConfigChanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Config\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRateLimitRate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByAdminOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByAdminOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenBucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateRefill\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateRefill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consume\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_currentTokenBucketState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_min\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_min\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"url\\\":\\\"#configchanged\\\"};duplicate=1\",\"expected\":\"ConfigChanged -> #configchanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=1\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=2\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=3\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=4\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=5\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=6\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=7\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"url\\\":\\\"#disablednonzeroratelimit\\\"};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit -> #disablednonzeroratelimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"url\\\":\\\"#invalidratelimitrate\\\"};duplicate=1\",\"expected\":\"InvalidRateLimitRate -> #invalidratelimitrate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"url\\\":\\\"#ratelimitmustbedisabled\\\"};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled -> #ratelimitmustbedisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=1\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=2\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=3\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=4\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=5\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=6\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=7\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=8\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=9\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"url\\\":\\\"#tokenmaxcapacityexceeded\\\"};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded -> #tokenmaxcapacityexceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"url\\\":\\\"#tokenratelimitreached\\\"};duplicate=1\",\"expected\":\"TokenRateLimitReached -> #tokenratelimitreached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokensConsumed\\\",\\\"url\\\":\\\"#tokensconsumed\\\"};duplicate=1\",\"expected\":\"TokensConsumed -> #tokensconsumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"url\\\":\\\"#_currenttokenbucketstate\\\"};duplicate=1\",\"expected\":\"_currentTokenBucketState -> #_currenttokenbucketstate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=1\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=2\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or\\\"};duplicate=1\",\"expected\":\", or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adjusts token amount to respect new capacity\\\"};duplicate=1\",\"expected\":\"Adjusts token amount to respect new capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically refills tokens based on elapsed time\\\"};duplicate=1\",\"expected\":\"Automatically refills tokens based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the number of tokens to add during a refill operation.\\\"};duplicate=1\",\"expected\":\"Calculates the number of tokens to add during a refill operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates token refill based on elapsed time\\\"};duplicate=1\",\"expected\":\"Calculates token refill based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes tokens to add based on elapsed time and rate\\\"};duplicate=1\",\"expected\":\"Computes tokens to add based on elapsed time and rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration parameters for the rate limiter.\\\"};duplicate=1\",\"expected\":\"Configuration parameters for the rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration structure used to configure\\\"};duplicate=1\",\"expected\":\"Configuration structure used to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration update process:\\\"};duplicate=1\",\"expected\":\"Configuration update process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current token balance\\\"};duplicate=1\",\"expected\":\"Current token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rate limiter\\\"};duplicate=1\",\"expected\":\"Emitted when the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are successfully consumed from the\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are successfully consumed from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enforces capacity and rate limits\\\"};duplicate=1\",\"expected\":\"Enforces capacity and rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures result doesn't exceed bucket capacity\\\"};duplicate=1\",\"expected\":\"Ensures result doesn't exceed bucket capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First number\\\"};duplicate=1\",\"expected\":\"First number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For disabled configurations:\\\"};duplicate=1\",\"expected\":\"For disabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For enabled configurations:\\\"};duplicate=1\",\"expected\":\"For enabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key behaviors:\\\"};duplicate=1\",\"expected\":\"Key behaviors:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum token capacity\\\"};duplicate=1\",\"expected\":\"Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"May throw\\\"};duplicate=1\",\"expected\":\"May throw\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate and capacity must be zero\\\"};duplicate=1\",\"expected\":\"Rate and capacity must be zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate must be non-zero and less than capacity\\\"};duplicate=1\",\"expected\":\"Rate must be non-zero and less than capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refill calculation:\\\"};duplicate=1\",\"expected\":\"Refill calculation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\\\"};duplicate=1\",\"expected\":\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents the state and configuration of a token bucket rate limiter.\\\"};duplicate=1\",\"expected\":\"Represents the state and configuration of a token bucket rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the current state of a token bucket, including automatic refill calculations.\\\"};duplicate=1\",\"expected\":\"Retrieves the current state of a token bucket, including automatic refill calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state without modifying storage\\\"};duplicate=1\",\"expected\":\"Returns the current state without modifying storage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the new token balance\\\"};duplicate=1\",\"expected\":\"Returns the new token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the smaller of two numbers.\\\"};duplicate=1\",\"expected\":\"Returns the smaller of two numbers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Second number\\\"};duplicate=1\",\"expected\":\"Second number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Skips execution if rate limiting is disabled or requestTokens is zero\\\"};duplicate=1\",\"expected\":\"Skips execution if rate limiting is disabled or requestTokens is zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"State management structure:\\\"};duplicate=1\",\"expected\":\"State management structure:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The configuration to validate\\\"};duplicate=1\",\"expected\":\"The configuration to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current state of the token bucket\\\"};duplicate=1\",\"expected\":\"The current state of the token bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration applied\\\"};duplicate=1\",\"expected\":\"The new configuration applied\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration to apply\\\"};duplicate=1\",\"expected\":\"The new configuration to apply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token balance after refill\\\"};duplicate=1\",\"expected\":\"The new token balance after refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens consumed\\\"};duplicate=1\",\"expected\":\"The number of tokens consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to consume\\\"};duplicate=1\",\"expected\":\"The number of tokens to consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address (use address(0) for aggregate value capacity)\\\"};duplicate=1\",\"expected\":\"The token address (use address(0) for aggregate value capacity)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to configure\\\"};duplicate=1\",\"expected\":\"The token bucket to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to consume from\\\"};duplicate=1\",\"expected\":\"The token bucket to consume from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses the configuration parameters defined in\\\"};duplicate=1\",\"expected\":\"This struct uses the configuration parameters defined in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a disabled\\\"};duplicate=1\",\"expected\":\"Thrown when a disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by an unauthorized address.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by an unauthorized address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the rate limit\\\"};duplicate=1\",\"expected\":\"Thrown when the rate limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the\\\"};duplicate=1\",\"expected\":\"Thrown when the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time elapsed since last refill (in seconds)\\\"};duplicate=1\",\"expected\":\"Time elapsed since last refill (in seconds)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokens per second refill rate\\\"};duplicate=1\",\"expected\":\"Tokens per second refill rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket parameters (enabled state, capacity, rate)\\\"};duplicate=1\",\"expected\":\"Updates bucket parameters (enabled state, capacity, rate)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket state with current refill before applying changes\\\"};duplicate=1\",\"expected\":\"Updates bucket state with current refill before applying changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the bucket state to reflect the current block timestamp:\\\"};duplicate=1\",\"expected\":\"Updates the bucket state to reflect the current block timestamp:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the lastUpdated timestamp\\\"};duplicate=1\",\"expected\":\"Updates the lastUpdated timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rate limiter configuration.\\\"};duplicate=1\",\"expected\":\"Updates the rate limiter configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used internally by\\\"};duplicate=1\",\"expected\":\"Used internally by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Utility function for safe minimum value calculation.\\\"};duplicate=1\",\"expected\":\"Utility function for safe minimum value calculation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates against mustBeDisabled requirement\\\"};duplicate=1\",\"expected\":\"Validates against mustBeDisabled requirement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates rate limiter configuration parameters.\\\"};duplicate=1\",\"expected\":\"Validates rate limiter configuration parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validation rules:\\\"};duplicate=1\",\"expected\":\"Validation rules:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the configuration must be disabled\\\"};duplicate=1\",\"expected\":\"Whether the configuration must be disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"a\\\"};duplicate=1\",\"expected\":\"a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"b\\\"};duplicate=1\",\"expected\":\"b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=1\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=2\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity\\\"};duplicate=1\",\"expected\":\"capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=1\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=2\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=3\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contains more tokens than its capacity.\\\"};duplicate=1\",\"expected\":\"contains more tokens than its capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event for non-zero consumption\\\"};duplicate=1\",\"expected\":\"event for non-zero consumption\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"has non-zero rate or capacity values.\\\"};duplicate=1\",\"expected\":\"has non-zero rate or capacity values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid (rate is zero or exceeds capacity).\\\"};duplicate=1\",\"expected\":\"is invalid (rate is zero or exceeds capacity).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is updated.\\\"};duplicate=1\",\"expected\":\"is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Activation state of the rate limiter\\\"};duplicate=1\",\"expected\":\"isEnabled: Activation state of the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Whether rate limiting is active\\\"};duplicate=1\",\"expected\":\"isEnabled: Whether rate limiting is active\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\\\"};duplicate=1\",\"expected\":\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"mustBeDisabled\\\"};duplicate=1\",\"expected\":\"mustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on violations\\\"};duplicate=1\",\"expected\":\"on violations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Token refill rate per second\\\"};duplicate=1\",\"expected\":\"rate: Token refill rate per second\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Tokens added per second during refill\\\"};duplicate=1\",\"expected\":\"rate: Tokens added per second during refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate\\\"};duplicate=1\",\"expected\":\"rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requestTokens\\\"};duplicate=1\",\"expected\":\"requestTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=1\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=2\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timeDiff\\\"};duplicate=1\",\"expected\":\"timeDiff\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=1\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens: Current token balance in the bucket\\\"};duplicate=1\",\"expected\":\"tokens: Current token balance in the bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address tokenAdminRegistry);\\\"};duplicate=1\",\"expected\":\"constructor(address tokenAdminRegistry);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _registerAdmin(address token, address admin) internal;\\\"};duplicate=1\",\"expected\":\"function _registerAdmin(address token, address admin) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAccessControlDefaultAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAccessControlDefaultAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaGetCCIPAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaGetCCIPAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaOwner(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaOwner(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_registerAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_registerAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAccessControlDefaultAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAccessControlDefaultAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaGetCCIPAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaGetCCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"url\\\":\\\"#addresszero\\\"};duplicate=1\",\"expected\":\"AddressZero -> #addresszero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=1\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=2\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=1\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=2\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RequiredRoleNotFound\\\",\\\"url\\\":\\\"#requiredrolenotfound\\\"};duplicate=1\",\"expected\":\"RequiredRoleNotFound -> #requiredrolenotfound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenAdminRegistry\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/token-admin-registry\\\"};duplicate=1\",\"expected\":\"TokenAdminRegistry -> /ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=2\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's getCCIPAdmin method\\\"};duplicate=1\",\"expected\":\"Calls token's getCCIPAdmin method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's owner method\\\"};duplicate=1\",\"expected\":\"Calls token's owner method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core registration logic:\\\"};duplicate=1\",\"expected\":\"Core registration logic:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with a reference to the\\\"};duplicate=1\",\"expected\":\"Initializes the contract with a reference to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to handle administrator registration.\\\"};duplicate=1\",\"expected\":\"Internal function to handle administrator registration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=1\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=2\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes administrator to registry\\\"};duplicate=1\",\"expected\":\"Proposes administrator to registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the getCCIPAdmin method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the getCCIPAdmin method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the owner method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the owner method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the immutable registry reference\\\"};duplicate=1\",\"expected\":\"Sets up the immutable registry reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the TokenAdminRegistry contract\\\"};duplicate=1\",\"expected\":\"The address of the TokenAdminRegistry contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=1\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=2\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using AccessControl:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using AccessControl:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using getCCIPAdmin:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using getCCIPAdmin:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using owner pattern:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using owner pattern:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates caller is the admin (reverts with\\\"};duplicate=1\",\"expected\":\"Validates caller is the admin (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the tokenAdminRegistry address is not zero (reverts with\\\"};duplicate=1\",\"expected\":\"Validates the tokenAdminRegistry address is not zero (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\\\"};duplicate=1\",\"expected\":\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"admin\\\"};duplicate=1\",\"expected\":\"admin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=1\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=2\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAdminRegistry\\\"};duplicate=1\",\"expected\":\"tokenAdminRegistry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AlreadyRegistered(address token);\\\"};duplicate=1\",\"expected\":\"error AlreadyRegistered(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenPoolToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidTokenPoolToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyPendingAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyPendingAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyRegistryModuleOrOwner(address sender);\\\"};duplicate=1\",\"expected\":\"error OnlyRegistryModuleOrOwner(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddress();\\\"};duplicate=1\",\"expected\":\"error ZeroAddress();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\\\"};duplicate=1\",\"expected\":\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleAdded(address module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleAdded(address module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleRemoved(address indexed module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleRemoved(address indexed module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\\\"};duplicate=1\",\"expected\":\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AddressZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AlreadyRegistered\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AlreadyRegistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenPoolToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenPoolToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyPendingAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyPendingAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyRegistryModuleOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyRegistryModuleOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=1\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setPool\\\",\\\"url\\\":\\\"#setpool\\\"};duplicate=1\",\"expected\":\"setPool -> #setpool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data structure for each token.\\\"};duplicate=1\",\"expected\":\"Configuration data structure for each token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new registry module is authorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a new registry module is authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is deauthorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is deauthorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token's pool configuration is changed via\\\"};duplicate=1\",\"expected\":\"Emitted when a token's pool configuration is changed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is completed via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator transfer is completed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=3\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=4\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of all configured tokens for efficient enumeration.\\\"};duplicate=1\",\"expected\":\"Set of all configured tokens for efficient enumeration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized registry modules that can register administrators.\\\"};duplicate=1\",\"expected\":\"Set of authorized registry modules that can register administrators.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores configuration data for each token, including administrators and pool addresses.\\\"};duplicate=1\",\"expected\":\"Stores configuration data for each token, including administrators and pool addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the newly authorized module\\\"};duplicate=1\",\"expected\":\"The address of the newly authorized module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the removed module\\\"};duplicate=1\",\"expected\":\"The address of the removed module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new administrator address\\\"};duplicate=1\",\"expected\":\"The new administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new pool address\\\"};duplicate=1\",\"expected\":\"The new pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The previous pool address\\\"};duplicate=1\",\"expected\":\"The previous pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=1\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=2\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being configured\\\"};duplicate=1\",\"expected\":\"The token address being configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that already has an administrator\\\"};duplicate=1\",\"expected\":\"The token address that already has an administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that is not supported by the pool\\\"};duplicate=1\",\"expected\":\"The token address that is not supported by the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role has been transferred\\\"};duplicate=1\",\"expected\":\"The token contract whose admin role has been transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=1\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=2\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=3\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to registry modules or owner is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to registry modules or owner is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to the token administrator is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to the token administrator is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\\\"};duplicate=1\",\"expected\":\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to register an administrator for a token that already has one.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to register an administrator for a token that already has one.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set a pool that doesn't support the token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set a pool that doesn't support the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) where not allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) where not allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=6\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=12\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=13\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=14\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=1\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=2\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=1\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newPool\\\"};duplicate=1\",\"expected\":\"newPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"previousPool\\\"};duplicate=1\",\"expected\":\"previousPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=4\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=5\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=6\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.AddressSet internal s_allowlist;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.AddressSet internal s_allowlist;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.UintSet internal s_remoteChainSelectors;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.UintSet internal s_remoteChainSelectors;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IERC20 internal immutable i_token;\\\"};duplicate=1\",\"expected\":\"IERC20 internal immutable i_token;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IRouter internal s_router;\\\"};duplicate=1\",\"expected\":\"IRouter internal s_router;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal immutable i_rmnProxy;\\\"};duplicate=1\",\"expected\":\"address internal immutable i_rmnProxy;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rateLimitAdmin;\\\"};duplicate=1\",\"expected\":\"address internal s_rateLimitAdmin;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_allowlistEnabled;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_allowlistEnabled;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\\\"};duplicate=1\",\"expected\":\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CallerIsNotARampOnRouter(address caller);\\\"};duplicate=1\",\"expected\":\"error CallerIsNotARampOnRouter(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainAlreadyExists(uint64 chainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainAlreadyExists(uint64 chainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainNotAllowed(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainNotAllowed(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CursedByRMN();\\\"};duplicate=1\",\"expected\":\"error CursedByRMN();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\\\"};duplicate=1\",\"expected\":\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\\\"};duplicate=1\",\"expected\":\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MismatchedArrayLengths();\\\"};duplicate=1\",\"expected\":\"error MismatchedArrayLengths();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error NonExistentChain(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error NonExistentChain(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\\\"};duplicate=1\",\"expected\":\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error SenderNotAllowed(address sender);\\\"};duplicate=1\",\"expected\":\"error SenderNotAllowed(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error Unauthorized(address caller);\\\"};duplicate=1\",\"expected\":\"error Unauthorized(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddressNotAllowed();\\\"};duplicate=1\",\"expected\":\"error ZeroAddressNotAllowed();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\\\"};duplicate=1\",\"expected\":\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _checkAllowList(address sender) internal view;\\\"};duplicate=1\",\"expected\":\"function _checkAllowList(address sender) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _lockOrBurn(uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _lockOrBurn(uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\\\"};duplicate=1\",\"expected\":\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _releaseOrMint(address receiver, uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _releaseOrMint(address receiver, uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\\\"};duplicate=1\",\"expected\":\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowList() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getAllowList() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowListEnabled() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function getAllowListEnabled() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRateLimitAdmin() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRateLimitAdmin() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\\\"};duplicate=1\",\"expected\":\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRmnProxy() public view returns (address rmnProxy);\\\"};duplicate=1\",\"expected\":\"function getRmnProxy() public view returns (address rmnProxy);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRouter() public view returns (address router);\\\"};duplicate=1\",\"expected\":\"function getRouter() public view returns (address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getSupportedChains() public view returns (uint64[] memory);\\\"};duplicate=1\",\"expected\":\"function getSupportedChains() public view returns (uint64[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getToken() public view returns (IERC20 token);\\\"};duplicate=1\",\"expected\":\"function getToken() public view returns (IERC20 token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenDecimals() public view virtual returns (uint8 decimals);\\\"};duplicate=1\",\"expected\":\"function getTokenDecimals() public view virtual returns (uint8 decimals);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedToken(address token) public view virtual returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedToken(address token) public view virtual returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRouter(address newRouter) public onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRouter(address newRouter) public onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\\\"};duplicate=1\",\"expected\":\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\\\"};duplicate=1\",\"expected\":\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\\\"};duplicate=1\",\"expected\":\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 internal immutable i_tokenDecimals;\\\"};duplicate=1\",\"expected\":\"uint8 internal immutable i_tokenDecimals;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainAlreadyExists\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainAlreadyExists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CursedByRMN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CursedByRMN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDecimalArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDecimalArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSourcePoolAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MismatchedArrayLengths\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MismatchedArrayLengths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"NonExistentChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OverflowDetected\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OverflowDetected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolAlreadyAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Rate Limiting\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Rate Limiting\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RemoteChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RemoteChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SenderNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Unauthorized\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Unauthorized\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateLocalAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateLocalAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_checkAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_checkAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeInboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeInboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeOutboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeOutboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_encodeLocalDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_encodeLocalDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOffRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOffRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOnRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_parseRemoteDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_parseRemoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRateLimitConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRateLimitConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateLockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateReleaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"addRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"addRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyChainUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyChainUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowListEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowListEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentInboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentInboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentOutboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentOutboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemotePools\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemotePools\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemoteToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemoteToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getSupportedChains\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getSupportedChains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_allowlistEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_allowlistEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_rmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_tokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_tokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_token\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"removeRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"removeRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_allowlist\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainSelectors\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remotePoolAddresses\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remotePoolAddresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_router\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=2\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainConfigured\\\",\\\"url\\\":\\\"#chainconfigured\\\"};duplicate=1\",\"expected\":\"ChainConfigured -> #chainconfigured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=1\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=2\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"url\\\":\\\"#invalidremotechaindecimals\\\"};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals -> #invalidremotechaindecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"url\\\":\\\"#invalidremotepoolforchain\\\"};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain -> #invalidremotepoolforchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LockedOrBurned\\\",\\\"url\\\":\\\"#lockedorburned\\\"};duplicate=1\",\"expected\":\"LockedOrBurned -> #lockedorburned\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"url\\\":\\\"#nonexistentchain\\\"};duplicate=1\",\"expected\":\"NonExistentChain -> #nonexistentchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.6.2/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.6.2/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.6.2/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/pool#releaseormintoutv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintOutV1 -> /ccip/api-reference/evm/v1.6.2/pool#releaseormintoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"url\\\":\\\"#poolalreadyadded\\\"};duplicate=1\",\"expected\":\"PoolAlreadyAdded -> #poolalreadyadded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.2/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.2/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.2/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.2/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/rate-limiter#tokenbucket\\\"};duplicate=1\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.2/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.2/rate-limiter#tokenbucket\\\"};duplicate=2\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.2/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ReleasedOrMinted\\\",\\\"url\\\":\\\"#releasedorminted\\\"};duplicate=1\",\"expected\":\"ReleasedOrMinted -> #releasedorminted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolAdded\\\",\\\"url\\\":\\\"#remotepooladded\\\"};duplicate=1\",\"expected\":\"RemotePoolAdded -> #remotepooladded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolRemoved\\\",\\\"url\\\":\\\"#remotepoolremoved\\\"};duplicate=1\",\"expected\":\"RemotePoolRemoved -> #remotepoolremoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RouterUpdated\\\",\\\"url\\\":\\\"#routerupdated\\\"};duplicate=1\",\"expected\":\"RouterUpdated -> #routerupdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"url\\\":\\\"#sendernotallowed\\\"};duplicate=1\",\"expected\":\"SenderNotAllowed -> #sendernotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"url\\\":\\\"#zeroaddressnotallowed\\\"};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed -> #zeroaddressnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=1\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=2\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=3\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI-encoded decimal places of the local token\\\"};duplicate=1\",\"expected\":\"ABI-encoded decimal places of the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Abstract internal function designed to be overridden with the specific token lock or burn logic.\\\"};duplicate=1\",\"expected\":\"Abstract internal function designed to be overridden with the specific token lock or burn logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Abstract internal function designed to be overridden with the specific token release or mint logic.\\\"};duplicate=1\",\"expected\":\"Abstract internal function designed to be overridden with the specific token release or mint logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adding new chains with rate limits\\\"};duplicate=1\",\"expected\":\"Adding new chains with rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new pool address for a remote chain.\\\"};duplicate=1\",\"expected\":\"Adds a new pool address for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListAdd for each successfully added address\\\"};duplicate=1\",\"expected\":\"AllowListAdd for each successfully added address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListRemove for each successfully removed address\\\"};duplicate=1\",\"expected\":\"AllowListRemove for each successfully removed address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlist is enabled\\\"};duplicate=1\",\"expected\":\"Allowlist is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows multiple pools per chain for upgrades\\\"};duplicate=1\",\"expected\":\"Allows multiple pools per chain for upgrades\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows:\\\"};duplicate=1\",\"expected\":\"Allows:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apply updates to the allow list.\\\"};duplicate=1\",\"expected\":\"Apply updates to the allow list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to add to the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to add to the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to remove from the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to remove from the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of configured chain selectors\\\"};duplicate=1\",\"expected\":\"Array of configured chain selectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of encoded pool addresses on remote chain\\\"};duplicate=1\",\"expected\":\"Array of encoded pool addresses on remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP_POOL_V1\\\"};duplicate=1\",\"expected\":\"CCIP_POOL_V1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates correct local token amounts using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates correct local token amounts using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the local amount based on the remote amount and decimals.\\\"};duplicate=1\",\"expected\":\"Calculates the local amount based on the remote amount and decimals.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Callable by owner or rate limit admin. All array lengths must match.\\\"};duplicate=1\",\"expected\":\"Callable by owner or rate limit admin. All array lengths must match.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized offRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized onRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is registered as an offRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is registered as an offRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is the designated onRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is the designated onRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=1\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=2\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=1\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=2\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a chain is configured in the pool.\\\"};duplicate=1\",\"expected\":\"Checks if a chain is configured in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a given token is supported by this pool.\\\"};duplicate=1\",\"expected\":\"Checks if a given token is supported by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Concrete child contracts (e.g., LockReleaseTokenPool, BurnMintTokenPool) must provide a specific implementation (either locking or burning tokens).\\\"};duplicate=1\",\"expected\":\"Concrete child contracts (e.g., LockReleaseTokenPool, BurnMintTokenPool) must provide a specific implementation (either locking or burning tokens).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Concrete child contracts must implement the logic to either release (transfer) existing tokens or mint new ones to the receiver.\\\"};duplicate=1\",\"expected\":\"Concrete child contracts must implement the logic to either release (transfer) existing tokens or mint new ones to the receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data for adding or updating a chain.\\\"};duplicate=1\",\"expected\":\"Configuration data for adding or updating a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration for each remote chain, including rate limits and token details.\\\"};duplicate=1\",\"expected\":\"Configuration for each remote chain, including rate limits and token details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the final amount released in local tokens\\\"};duplicate=1\",\"expected\":\"Contains the final amount released in local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=1\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=2\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the inbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the inbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the outbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the outbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data length is not 32 bytes (invalid ABI encoding)\\\"};duplicate=1\",\"expected\":\"Data length is not 32 bytes (invalid ABI encoding)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decoded value exceeds uint8 range\\\"};duplicate=1\",\"expected\":\"Decoded value exceeds uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=27\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=28\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=29\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=30\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=31\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=32\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=33\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=34\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=35\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=36\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=37\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=38\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=39\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=40\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=41\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=42\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=43\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=44\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=45\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=46\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=47\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=48\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=49\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=50\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=51\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a\\\"};duplicate=1\",\"expected\":\"Emits a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a\\\"};duplicate=2\",\"expected\":\"Emits a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits:\\\"};duplicate=1\",\"expected\":\"Emits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=3\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensure no inflight transactions exist before removal to prevent loss of funds.\\\"};duplicate=1\",\"expected\":\"Ensure no inflight transactions exist before removal to prevent loss of funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expects the data to be ABI-encoded uint256 that fits in uint8\\\"};duplicate=1\",\"expected\":\"Expects the data to be ABI-encoded uint256 that fits in uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\\\"};duplicate=1\",\"expected\":\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=1\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=2\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flag indicating if the pool uses access control.\\\"};duplicate=1\",\"expected\":\"Flag indicating if the pool uses access control.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the allowed addresses.\\\"};duplicate=1\",\"expected\":\"Gets the allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC165\\\"};duplicate=1\",\"expected\":\"IERC165\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=2\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IPoolV1\\\"};duplicate=1\",\"expected\":\"IPoolV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\\\"};duplicate=1\",\"expected\":\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is enabled, verifies sender is in s_allowlist\\\"};duplicate=1\",\"expected\":\"If allowlist is enabled, verifies sender is in s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial set of authorized addresses (if any)\\\"};duplicate=1\",\"expected\":\"Initial set of authorized addresses (if any)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes allowlist if provided\\\"};duplicate=1\",\"expected\":\"Initializes allowlist if provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the lock operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the lock operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the release operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the release operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal configuration for a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal configuration for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\\\"};duplicate=1\",\"expected\":\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for incoming transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for incoming transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for outgoing transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for outgoing transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to decode the decimal configuration received from a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal function to decode the decimal configuration received from a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to encode the local token's decimals for cross-chain communication.\\\"};duplicate=1\",\"expected\":\"Internal function to encode the local token's decimals for cross-chain communication.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to update rate limit configuration for a chain.\\\"};duplicate=1\",\"expected\":\"Internal function to update rate limit configuration for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate lock or burn operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate lock or burn operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate release or mint operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate release or mint operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to verify if a sender is authorized when allowlist is enabled.\\\"};duplicate=1\",\"expected\":\"Internal function to verify if a sender is authorized when allowlist is enabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\\\"};duplicate=1\",\"expected\":\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It is called by the public lockOrBurn function after all validations are complete.\\\"};duplicate=1\",\"expected\":\"It is called by the public lockOrBurn function after all validations are complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It is called by the public releaseOrMint function after validation and amount calculations.\\\"};duplicate=1\",\"expected\":\"It is called by the public releaseOrMint function after validation and amount calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Locks tokens in the pool for cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Locks tokens in the pool for cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maps hashed pool addresses to their original form for verification.\\\"};duplicate=1\",\"expected\":\"Maps hashed pool addresses to their original form for verification.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=33\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=34\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=35\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=36\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=37\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=27\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=28\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=29\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=30\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=31\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=32\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=33\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=34\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\\\"};duplicate=1\",\"expected\":\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\\\"};duplicate=1\",\"expected\":\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner\\\"};duplicate=1\",\"expected\":\"Only callable by owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the contract owner. Emits\\\"};duplicate=1\",\"expected\":\"Only callable by the contract owner. Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=20\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=21\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=22\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=23\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=24\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=25\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=26\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=27\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=28\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=29\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=30\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=31\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs access control validation based on the i_allowlistEnabled flag:\\\"};duplicate=1\",\"expected\":\"Performs access control validation based on the i_allowlistEnabled flag:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs initial setup:\\\"};duplicate=1\",\"expected\":\"Performs initial setup:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous pools remain valid for inflight messages\\\"};duplicate=1\",\"expected\":\"Previous pools remain valid for inflight messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token locking with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token locking with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token release with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token release with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=1\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=2\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for incoming transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for incoming transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for outgoing transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for outgoing transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=1\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=2\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=1\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=2\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=1\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=2\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Releases tokens from the pool to a recipient.\\\"};duplicate=1\",\"expected\":\"Releases tokens from the pool to a recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a pool address from a remote chain's configuration.\\\"};duplicate=1\",\"expected\":\"Removes a pool address from a remote chain's configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removing existing chains\\\"};duplicate=1\",\"expected\":\"Removing existing chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=1\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=2\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all configured chain selectors.\\\"};duplicate=1\",\"expected\":\"Returns all configured chain selectors.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded address to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded address to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded addresses to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded addresses to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the Risk Management Network proxy address.\\\"};duplicate=1\",\"expected\":\"Returns the Risk Management Network proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the configured pool addresses for a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the configured pool addresses for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rate limit administrator address.\\\"};duplicate=1\",\"expected\":\"Returns the current rate limit administrator address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current router address.\\\"};duplicate=1\",\"expected\":\"Returns the current router address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of inbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of inbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of outbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of outbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"Returns the number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token address on a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the token address on a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token managed by this pool.\\\"};duplicate=1\",\"expected\":\"Returns the token managed by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns whether allowlist functionality is active.\\\"};duplicate=1\",\"expected\":\"Returns whether allowlist functionality is active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=10\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=11\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=12\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=13\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=14\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=15\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=16\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=17\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=18\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=19\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=20\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=7\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=8\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=9\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=1\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=2\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=2\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=3\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=4\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=2\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is allowlisted (if enabled)\\\"};duplicate=1\",\"expected\":\"Sender is allowlisted (if enabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is not in the allowlist\\\"};duplicate=1\",\"expected\":\"Sender is not in the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of addresses authorized to initiate cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of addresses authorized to initiate cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized chain selectors for cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of authorized chain selectors for cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"Sets the address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the chain rate limiter config.\\\"};duplicate=1\",\"expected\":\"Sets the chain rate limiter config.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up immutable contract references\\\"};duplicate=1\",\"expected\":\"Sets up immutable contract references\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool is valid\\\"};duplicate=1\",\"expected\":\"Source pool is valid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports the following interfaces:\\\"};duplicate=1\",\"expected\":\"Supports the following interfaces:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address.\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The RMN proxy contract address\\\"};duplicate=1\",\"expected\":\"The RMN proxy contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network (RMN) proxy address.\\\"};duplicate=1\",\"expected\":\"The Risk Management Network (RMN) proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network proxy address\\\"};duplicate=1\",\"expected\":\"The Risk Management Network proxy address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual number of decimals provided\\\"};duplicate=1\",\"expected\":\"The actual number of decimals provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"The address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the already existing pool\\\"};duplicate=1\",\"expected\":\"The address of the already existing pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the invalid token\\\"};duplicate=1\",\"expected\":\"The address of the invalid token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the pool to remove\\\"};duplicate=1\",\"expected\":\"The address of the pool to remove\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the remote pool (encoded to support non-EVM chains)\\\"};duplicate=1\",\"expected\":\"The address of the remote pool (encoded to support non-EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address receiving the tokens\\\"};duplicate=1\",\"expected\":\"The address receiving the tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address that attempted the action\\\"};duplicate=1\",\"expected\":\"The address that attempted the action\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to check for permission\\\"};duplicate=1\",\"expected\":\"The address to check for permission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be added.\\\"};duplicate=1\",\"expected\":\"The addresses to be added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be removed.\\\"};duplicate=1\",\"expected\":\"The addresses to be removed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The allowed addresses.\\\"};duplicate=1\",\"expected\":\"The allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=1\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=2\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens to lock or burn\\\"};duplicate=1\",\"expected\":\"The amount of tokens to lock or burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens to release or mint\\\"};duplicate=1\",\"expected\":\"The amount of tokens to release or mint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount on the remote chain.\\\"};duplicate=1\",\"expected\":\"The amount on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount that caused the overflow\\\"};duplicate=1\",\"expected\":\"The amount that caused the overflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector being queried\\\"};duplicate=1\",\"expected\":\"The chain selector being queried\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the destination chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the source chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to add the pool for\\\"};duplicate=1\",\"expected\":\"The chain selector to add the pool for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to configure\\\"};duplicate=1\",\"expected\":\"The chain selector to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=1\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=2\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to remove the pool from\\\"};duplicate=1\",\"expected\":\"The chain selector to remove the pool from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=1\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=2\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector where the pool exists\\\"};duplicate=1\",\"expected\":\"The chain selector where the pool exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selectors to configure\\\"};duplicate=1\",\"expected\":\"The chain selectors to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals of the token on the remote chain.\\\"};duplicate=1\",\"expected\":\"The decimals of the token on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the local chain\\\"};duplicate=1\",\"expected\":\"The decimals on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the remote chain\\\"};duplicate=1\",\"expected\":\"The decimals on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded decimal configuration data\\\"};duplicate=1\",\"expected\":\"The encoded decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded token address on the remote chain\\\"};duplicate=1\",\"expected\":\"The encoded token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of decimals\\\"};duplicate=1\",\"expected\":\"The expected number of decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid decimal configuration data\\\"};duplicate=1\",\"expected\":\"The invalid decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid pool address\\\"};duplicate=1\",\"expected\":\"The invalid pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The local amount.\\\"};duplicate=1\",\"expected\":\"The local amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new router contract address\\\"};duplicate=1\",\"expected\":\"The new router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimal places for the token\\\"};duplicate=1\",\"expected\":\"The number of decimal places for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"The number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used on the remote chain\\\"};duplicate=1\",\"expected\":\"The number of decimals used on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\\\"};duplicate=1\",\"expected\":\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address to verify\\\"};duplicate=1\",\"expected\":\"The pool address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=1\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=2\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=3\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain selector for which the rate limits apply.\\\"};duplicate=1\",\"expected\":\"The remote chain selector for which the rate limits apply.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The selector of the chain that already exists\\\"};duplicate=1\",\"expected\":\"The selector of the chain that already exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address to check\\\"};duplicate=1\",\"expected\":\"The token address to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract address\\\"};duplicate=1\",\"expected\":\"The token contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token managed by this pool. Currently supports one token per pool.\\\"};duplicate=1\",\"expected\":\"The token managed by this pool. Currently supports one token per pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to be managed by this pool\\\"};duplicate=1\",\"expected\":\"The token to be managed by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token's decimal places on this chain\\\"};duplicate=1\",\"expected\":\"The token's decimal places on this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function is a virtual placeholder within the main lockOrBurn workflow:\\\"};duplicate=1\",\"expected\":\"This function is a virtual placeholder within the main lockOrBurn workflow:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function is a virtual placeholder within the main releaseOrMint workflow:\\\"};duplicate=1\",\"expected\":\"This function is a virtual placeholder within the main releaseOrMint workflow:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\\\"};duplicate=1\",\"expected\":\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a caller lacks the required permissions for an operation.\\\"};duplicate=1\",\"expected\":\"Thrown when a caller lacks the required permissions for an operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\\\"};duplicate=1\",\"expected\":\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a token amount conversion would result in an arithmetic overflow.\\\"};duplicate=1\",\"expected\":\"Thrown when a token amount conversion would result in an arithmetic overflow.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\\\"};duplicate=1\",\"expected\":\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when array parameters have different lengths in multi-chain operations.\\\"};duplicate=1\",\"expected\":\"Thrown when array parameters have different lengths in multi-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a chain that is already configured.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a chain that is already configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a pool that is already configured for a chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a pool that is already configured for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to modify the allowlist when the feature is disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to modify the allowlist when the feature is disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with a token that is not supported by the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with a token that is not supported by the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with an unconfigured chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with an unconfigured chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use a chain that is not authorized.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use a chain that is not authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) for critical contract addresses.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) for critical contract addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unconfigured or invalid remote pool address.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unconfigured or invalid remote pool address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the Risk Management Network has flagged operations as unsafe.\\\"};duplicate=1\",\"expected\":\"Thrown when the Risk Management Network has flagged operations as unsafe.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when token decimals don't match the expected configuration.\\\"};duplicate=1\",\"expected\":\"Thrown when token decimals don't match the expected configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=1\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=2\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Transfers tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the chain is configured in the pool\\\"};duplicate=1\",\"expected\":\"True if the chain is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the contract implements the interface\\\"};duplicate=1\",\"expected\":\"True if the contract implements the interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool is configured for the chain\\\"};duplicate=1\",\"expected\":\"True if the pool is configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the token is supported by this pool\\\"};duplicate=1\",\"expected\":\"True if the token is supported by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=27\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=28\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=29\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=30\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=31\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=32\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=33\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=34\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=35\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=36\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=37\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=38\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=39\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=40\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=41\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=42\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=43\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=44\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=45\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=46\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=47\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=48\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=49\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=50\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=51\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates both inbound and outbound rate limits\\\"};duplicate=1\",\"expected\":\"Updates both inbound and outbound rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates chain configurations in bulk.\\\"};duplicate=1\",\"expected\":\"Updates chain configurations in bulk.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates rate limit configurations for multiple chains.\\\"};duplicate=1\",\"expected\":\"Updates rate limit configurations for multiple chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\\\"};duplicate=1\",\"expected\":\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the router contract address.\\\"};duplicate=1\",\"expected\":\"Updates the router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=1\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=2\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updating chain configurations Only callable by owner.\\\"};duplicate=1\",\"expected\":\"Updating chain configurations Only callable by owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\\\"};duplicate=1\",\"expected\":\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=1\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=2\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates both rate limit configurations\\\"};duplicate=1\",\"expected\":\"Validates both rate limit configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=1\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=2\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates non-zero addresses for token, router, and RMN proxy\\\"};duplicate=1\",\"expected\":\"Validates non-zero addresses for token, router, and RMN proxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the chain exists\\\"};duplicate=1\",\"expected\":\"Validates that the chain exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the decoded value is within uint8 range\\\"};duplicate=1\",\"expected\":\"Validates that the decoded value is within uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=1\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=2\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies if a pool address is configured for a remote chain.\\\"};duplicate=1\",\"expected\":\"Verifies if a pool address is configured for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies token decimals match if ERC20Metadata is supported\\\"};duplicate=1\",\"expected\":\"Verifies token decimals match if ERC20Metadata is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actual\\\"};duplicate=1\",\"expected\":\"actual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=2\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=3\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=4\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=5\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=6\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=1\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=2\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=3\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=4\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=4\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=5\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"caller\\\"};duplicate=1\",\"expected\":\"caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=1\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event upon successful locking\\\"};duplicate=1\",\"expected\":\"event upon successful locking\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event.\\\"};duplicate=1\",\"expected\":\"event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=2\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"expected\\\"};duplicate=1\",\"expected\":\"expected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not an authorized offRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not an authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not the authorized onRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not the authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=1\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=2\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=3\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool address is empty\\\"};duplicate=1\",\"expected\":\"if the pool address is empty\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is already configured for this chain\\\"};duplicate=1\",\"expected\":\"if the pool is already configured for this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is not configured for the chain\\\"};duplicate=1\",\"expected\":\"if the pool is not configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=1\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=2\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=1\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=2\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfigs\\\"};duplicate=1\",\"expected\":\"inboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localDecimals\\\"};duplicate=1\",\"expected\":\"localDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRouter\\\"};duplicate=1\",\"expected\":\"newRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=1\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=2\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfigs\\\"};duplicate=1\",\"expected\":\"outboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Active rate limiter for sending tokens\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Active rate limiter for sending tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=1\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=2\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector: Chain identifier\\\"};duplicate=1\",\"expected\":\"remoteChainSelector: Chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=1\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=10\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=11\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=12\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=13\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=14\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=15\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=2\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=3\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=4\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=5\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=6\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=7\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=8\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=9\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelectors\\\"};duplicate=1\",\"expected\":\"remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=1\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=2\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=1\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=2\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=3\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=4\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=5\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddresses: List of authorized pool addresses on the remote chain\\\"};duplicate=1\",\"expected\":\"remotePoolAddresses: List of authorized pool addresses on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePools: Set of authorized pool addresses (stored as hashes)\\\"};duplicate=1\",\"expected\":\"remotePools: Set of authorized pool addresses (stored as hashes)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=1\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=2\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=1\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=2\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=1\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=2\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true is enabled, false if not.\\\"};duplicate=1\",\"expected\":\"true is enabled, false if not.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=1\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=2\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=13\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=14\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=15\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=3\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=4\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=5\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=6\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when successful.\\\"};duplicate=1\",\"expected\":\"when successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when the pool is successfully added.\\\"};duplicate=1\",\"expected\":\"when the pool is successfully added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.2/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You are viewing API documentation for CCIP v1.6.3, which is the latest version.\\\"};duplicate=1\",\"expected\":\"You are viewing API documentation for CCIP v1.6.3, which is the latest version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IBurnMintERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _lockOrBurn(uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _lockOrBurn(uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/token-pool#_lockorburn\\\"};duplicate=1\",\"expected\":\"_lockOrBurn -> /ccip/api-reference/evm/v1.6.3/token-pool#_lockorburn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier that specifies the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier that specifies the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the token's burnFrom(address(this), amount) function.\\\"};duplicate=1\",\"expected\":\"Calls the token's burnFrom(address(this), amount) function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\\\"};duplicate=1\",\"expected\":\"For maximum compatibility, the constructor automatically grants the pool maximum allowance to burn tokens from itself, as some tokens require explicit approval for burning operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that implements the token burning logic for the BurnFromMintTokenPool.\\\"};duplicate=1\",\"expected\":\"Internal function that implements the token burning logic for the BurnFromMintTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overrides the virtual\\\"};duplicate=1\",\"expected\":\"Overrides the virtual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the specific \\\\\\\"burn\\\\\\\" implementation for the BurnFromMintTokenPool.\\\"};duplicate=1\",\"expected\":\"Provides the specific \\\"burn\\\" implementation for the BurnFromMintTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Relies on the token allowance set in the constructor to authorize the burn operation from the pool's own address.\\\"};duplicate=1\",\"expected\":\"Relies on the token allowance set in the constructor to authorize the burn operation from the pool's own address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the BurnFromMintTokenPool contract with initial configuration.\\\"};duplicate=1\",\"expected\":\"Sets up the BurnFromMintTokenPool contract with initial configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract identifier \\\\\\\"BurnFromMintTokenPool 1.6.3\\\\\\\"\\\"};duplicate=1\",\"expected\":\"The contract identifier \\\"BurnFromMintTokenPool 1.6.3\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to burn\\\"};duplicate=1\",\"expected\":\"The number of tokens to burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the base TokenPool contract:\\\"};duplicate=1\",\"expected\":\"function from the base TokenPool contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-from-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-mint-erc20\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/burn-mint-token-pool-abstract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _ccipReceive(Client.Any2EVMMessage memory message) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_ccipReceive\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the contract implements specific interfaces.\\\"};duplicate=1\",\"expected\":\"Determines whether the contract implements specific interfaces.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If contract has no code (EXTCODESIZE = 0): only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns false or reverts: only tokens are transferred\\\"};duplicate=1\",\"expected\":\"If returns false or reverts: only tokens are transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If returns true: tokens are transferred and ccipReceive is called atomically\\\"};duplicate=1\",\"expected\":\"If returns true: tokens are transferred and ccipReceive is called atomically\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection with CCIP-specific behavior:\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection with CCIP-specific behavior:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to be implemented by derived contracts for custom message handling.\\\"};duplicate=1\",\"expected\":\"Internal function to be implemented by derived contracts for custom message handling.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides access to the immutable router address used for message validation.\\\"};duplicate=1\",\"expected\":\"Provides access to the immutable router address used for message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\\\"};duplicate=1\",\"expected\":\"Returns true for IAny2EVMMessageReceiver and IERC165 interfaces\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current CCIP router address\\\"};duplicate=1\",\"expected\":\"The current CCIP router address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the interface is supported\\\"};duplicate=1\",\"expected\":\"True if the interface is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used by CCIP to check if ccipReceive is available\\\"};duplicate=1\",\"expected\":\"Used by CCIP to check if ccipReceive is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\\\"};duplicate=1\",\"expected\":\"Virtual function that must be overridden in implementing contracts to define custom message handling logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ccip-receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant SUI_EXTRA_ARGS_V1_TAG = 0x21ea4ca9;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant SUI_EXTRA_ARGS_V1_TAG = 0x21ea4ca9;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\\\"};duplicate=1\",\"expected\":\"bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(EVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _argsToBytes(GenericExtraArgsV2 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\\\"};duplicate=1\",\"expected\":\"function _svmArgsToBytes(SVMExtraArgsV1 memory extraArgs) internal pure returns (bytes memory bts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct EVMTokenAmount { address token; uint256 amount; }\\\"};duplicate=1\",\"expected\":\"struct EVMTokenAmount { address token; uint256 amount; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\\\"};duplicate=1\",\"expected\":\"struct GenericExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\\\"};duplicate=1\",\"expected\":\"struct SVMExtraArgsV1 { uint32 computeUnits; uint64 accountIsWritableBitmap; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] accounts; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct SuiExtraArgsV1 { uint256 gasLimit; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] receiverObjectIds; }\\\"};duplicate=1\",\"expected\":\"struct SuiExtraArgsV1 { uint256 gasLimit; bool allowOutOfOrderExecution; bytes32 tokenReceiver; bytes32[] receiverObjectIds; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SUI_ACCOUNT_BYTE_SIZE = 32;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SUI_ACCOUNT_BYTE_SIZE = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SUI_EXTRA_ARGS_MAX_RECEIVER_OBJECT_IDS = 64;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SUI_EXTRA_ARGS_MAX_RECEIVER_OBJECT_IDS = 64;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SUI_MESSAGING_ACCOUNTS_OVERHEAD = 1;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SUI_MESSAGING_ACCOUNTS_OVERHEAD = 1;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SUI_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool, 4 bytes for length, 32 bytes for address + 32 // dest_token_address + 4 // dest_gas_amount + 4 // extra_data length, the contents are calculated separately + 32; // amount\\\"};duplicate=1\",\"expected\":\"uint256 public constant SUI_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool, 4 bytes for length, 32 bytes for address + 32 // dest_token_address + 4 // dest_gas_amount + 4 // extra_data length, the contents are calculated separately + 32; // amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\\\"};duplicate=1\",\"expected\":\"uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool + 32 // token_address + 4 // gas_amount + 4 // extra_data overhead + 32 // amount + 32 // size of the token lookup table account + 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13 + 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table + 32 // per-chain token pool config, not included in the token lookup table + 32 // per-chain token billing config, not always included in the token lookup table + 32; // OffRamp pool signer PDA, not included in the token lookup table\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVMTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"EVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GENERIC_EXTRA_ARGS_V2_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GENERIC_EXTRA_ARGS_V2_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"GenericExtraArgsV2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SUI_ACCOUNT_BYTE_SIZE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SUI_ACCOUNT_BYTE_SIZE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SUI_EXTRA_ARGS_MAX_RECEIVER_OBJECT_IDS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SUI_EXTRA_ARGS_MAX_RECEIVER_OBJECT_IDS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SUI_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SUI_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SUI_MESSAGING_ACCOUNTS_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SUI_MESSAGING_ACCOUNTS_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SUI_TOKEN_TRANSFER_DATA_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SUI_TOKEN_TRANSFER_DATA_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVMExtraArgsV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_ACCOUNT_BYTE_SIZE\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_ACCOUNT_BYTE_SIZE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_MAX_ACCOUNTS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_EXTRA_ARGS_V1_TAG\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_EXTRA_ARGS_V1_TAG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_MESSAGING_ACCOUNTS_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SVM_TOKEN_TRANSFER_DATA_OVERHEAD\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SuiExtraArgsV1\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SuiExtraArgsV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V1)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V1)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_argsToBytes (V2)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_argsToBytes (V2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_svmArgsToBytes\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_svmArgsToBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMExtraArgsV1\\\",\\\"url\\\":\\\"#evmextraargsv1\\\"};duplicate=1\",\"expected\":\"EVMExtraArgsV1 -> #evmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> #genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SVMExtraArgsV1\\\",\\\"url\\\":\\\"#svmextraargsv1\\\"};duplicate=1\",\"expected\":\"SVMExtraArgsV1 -> #svmextraargsv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional object IDs needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Additional object IDs needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the token receiver\\\"};duplicate=1\",\"expected\":\"Address of the token receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the token receiver\\\"};duplicate=2\",\"expected\":\"Address of the token receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows specifying out-of-order execution preference\\\"};duplicate=1\",\"expected\":\"Allows specifying out-of-order execution preference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount of tokens to transfer\\\"};duplicate=1\",\"expected\":\"Amount of tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bitmap indicating which accounts are writable\\\"};duplicate=1\",\"expected\":\"Bitmap indicating which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Changes to this struct require RMN maintainer notification\\\"};duplicate=1\",\"expected\":\"Changes to this struct require RMN maintainer notification\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\\\"};duplicate=1\",\"expected\":\"Compatible with multiple chain families (formerly EVMExtraArgsV2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compute units for execution on Solana\\\"};duplicate=1\",\"expected\":\"Compute units for execution on Solana\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures compute units (Solana's equivalent to gas)\\\"};duplicate=1\",\"expected\":\"Configures compute units (Solana's equivalent to gas)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures gas limit\\\"};duplicate=1\",\"expected\":\"Configures gas limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Controls message execution order\\\"};duplicate=1\",\"expected\":\"Controls message execution order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Controls message execution order\\\"};duplicate=2\",\"expected\":\"Controls message execution order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core structure for token transfers used by the Risk Management Network (RMN):\\\"};duplicate=1\",\"expected\":\"Core structure for token transfers used by the Risk Management Network (RMN):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default value for allowOutOfOrderExecution varies by chain\\\"};duplicate=1\",\"expected\":\"Default value for allowOutOfOrderExecution varies by chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines token receiver details\\\"};duplicate=1\",\"expected\":\"Defines token receiver details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines token receiver details\\\"};duplicate=2\",\"expected\":\"Defines token receiver details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes EVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes EVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes GenericExtraArgsV2 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes GenericExtraArgsV2 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes SVMExtraArgsV1 into bytes for message transmission.\\\"};duplicate=1\",\"expected\":\"Encodes SVMExtraArgsV1 into bytes for message transmission.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enhanced version of extra arguments adding execution order control:\\\"};duplicate=1\",\"expected\":\"Enhanced version of extra arguments adding execution order control:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First version of extra arguments, supporting basic gas limit configuration.\\\"};duplicate=1\",\"expected\":\"First version of extra arguments, supporting basic gas limit configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit for execution on SUI\\\"};duplicate=1\",\"expected\":\"Gas limit for execution on SUI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit for execution on destination chain\\\"};duplicate=1\",\"expected\":\"Gas limit for execution on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Includes configurable gas limit\\\"};duplicate=1\",\"expected\":\"Includes configurable gas limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Lists additional accounts needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Lists additional accounts needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Lists additional object IDs needed for CCIP receiver execution\\\"};duplicate=1\",\"expected\":\"Lists additional object IDs needed for CCIP receiver execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of overhead accounts needed for message execution on SUI.\\\"};duplicate=1\",\"expected\":\"Number of overhead accounts needed for message execution on SUI.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of overhead accounts needed for message execution on SVM.\\\"};duplicate=1\",\"expected\":\"Number of overhead accounts needed for message execution on SVM.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents token amounts in their chain-specific format\\\"};duplicate=1\",\"expected\":\"Represents token amounts in their chain-specific format\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SUI-specific arguments for cross-chain messages:\\\"};duplicate=1\",\"expected\":\"SUI-specific arguments for cross-chain messages:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes SUI extra arguments with the SUI tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes SUI extra arguments with the SUI tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes Solana VM extra arguments with the SVM tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V1 extra arguments with the V1 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\\\"};duplicate=1\",\"expected\":\"Serializes V2 generic extra arguments with the V2 tag identifier for cross-chain message processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Solana VM-specific arguments for cross-chain messages:\\\"};duplicate=1\",\"expected\":\"Solana VM-specific arguments for cross-chain messages:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Some chains enforce specific values and will revert if not set correctly\\\"};duplicate=1\",\"expected\":\"Some chains enforce specific values and will revert if not set correctly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifies which accounts are writable\\\"};duplicate=1\",\"expected\":\"Specifies which accounts are writable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V1 extra arguments specific to SUI chain:\\\"};duplicate=1\",\"expected\":\"Structure for V1 extra arguments specific to SUI chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V1 extra arguments specific to Solana VM-based chains.\\\"};duplicate=1\",\"expected\":\"Structure for V1 extra arguments specific to Solana VM-based chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure for V2 extra arguments in cross-chain messages.\\\"};duplicate=1\",\"expected\":\"Structure for V2 extra arguments in cross-chain messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing token amounts in CCIP messages.\\\"};duplicate=1\",\"expected\":\"Structure representing token amounts in CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SVM extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The SVM extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V1 extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V1 extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The V2 generic extra arguments to encode\\\"};duplicate=1\",\"expected\":\"The V2 generic extra arguments to encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=1\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded extra arguments with tag\\\"};duplicate=2\",\"expected\":\"The encoded extra arguments with tag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected static payload size of a token transfer when BCS encoded and submitted to SUI. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on SUI.\\\"};duplicate=1\",\"expected\":\"The expected static payload size of a token transfer when BCS encoded and submitted to SUI. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on SUI.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\\\"};duplicate=1\",\"expected\":\"The expected static payload size of a token transfer when Borsh encoded and submitted to SVM. TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately. Each component represents space required for different parts of the token transfer operation on Solana.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for SUI extra arguments.\\\"};duplicate=1\",\"expected\":\"The identifier tag for SUI extra arguments.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for Solana VM extra arguments.\\\"};duplicate=1\",\"expected\":\"The identifier tag for Solana VM extra arguments.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\\\\\"CCIP EVMExtraArgsV1\\\\\\\"))).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V1 extra arguments (bytes4(keccak256(\\\"CCIP EVMExtraArgsV1\\\"))).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\\\"};duplicate=1\",\"expected\":\"The identifier tag for V2 generic extra arguments, available for multiple chain families (formerly EVM_EXTRA_ARGS_V2_TAG).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maximum number of accounts that can be passed in SVMExtraArgs.\\\"};duplicate=1\",\"expected\":\"The maximum number of accounts that can be passed in SVMExtraArgs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maximum number of receiver object IDs that can be passed in SuiExtraArgs.\\\"};duplicate=1\",\"expected\":\"The maximum number of receiver object IDs that can be passed in SuiExtraArgs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The size of each SUI account address in bytes.\\\"};duplicate=1\",\"expected\":\"The size of each SUI account address in bytes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The size of each SVM account address in bytes.\\\"};duplicate=1\",\"expected\":\"The size of each SVM account address in bytes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address on the local chain\\\"};duplicate=1\",\"expected\":\"Token address on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=1\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether messages can be executed in any order\\\"};duplicate=2\",\"expected\":\"Whether messages can be executed in any order\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accounts\\\"};duplicate=1\",\"expected\":\"accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=1\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowOutOfOrderExecution\\\"};duplicate=2\",\"expected\":\"allowOutOfOrderExecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=1\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32[]\\\"};duplicate=2\",\"expected\":\"bytes32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=1\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes32\\\"};duplicate=2\",\"expected\":\"bytes32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"computeUnits\\\"};duplicate=1\",\"expected\":\"computeUnits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=1\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"extraArgs\\\"};duplicate=2\",\"expected\":\"extraArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiverObjectIds\\\"};duplicate=1\",\"expected\":\"receiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenReceiver\\\"};duplicate=1\",\"expected\":\"tokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenReceiver\\\"};duplicate=2\",\"expected\":\"tokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=1\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=2\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=3\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=4\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=5\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=6\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPSendError\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPSendError\\\"};duplicate=7\",\"component\":\"CCIPSendError\",\"reason\":\"Unsupported MDX component CCIPSendError\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=1\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=2\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=3\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=4\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CCIPEvent\\\",\\\"reason\\\":\\\"Unsupported MDX component CCIPEvent\\\"};duplicate=5\",\"component\":\"CCIPEvent\",\"reason\":\"Unsupported MDX component CCIPEvent\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DestinationChainNotEnabled(uint64 destChainSelector);\\\"};duplicate=1\",\"expected\":\"error DestinationChainNotEnabled(uint64 destChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ExtraArgOutOfOrderExecutionMustBeTrue();\\\"};duplicate=1\",\"expected\":\"error ExtraArgOutOfOrderExecutionMustBeTrue();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error FeeTokenNotSupported(address token);\\\"};duplicate=1\",\"expected\":\"error FeeTokenNotSupported(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\\\"};duplicate=1\",\"expected\":\"error InvalidChainFamilySelector(bytes4 chainFamilySelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsData();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsData();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidExtraArgsTag();\\\"};duplicate=1\",\"expected\":\"error InvalidExtraArgsTag();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\\\"};duplicate=1\",\"expected\":\"error InvalidSVMExtraArgsWritableBitmap(uint64 accountIsWritableBitmap, uint256 numAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenReceiver();\\\"};duplicate=1\",\"expected\":\"error InvalidTokenReceiver();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageComputeUnitLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageComputeUnitLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\\\"};duplicate=1\",\"expected\":\"error MessageFeeTooHigh(uint256 msgFeeJuels, uint256 maxFeeJuelsPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageGasLimitTooHigh();\\\"};duplicate=1\",\"expected\":\"error MessageGasLimitTooHigh();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\\\"};duplicate=1\",\"expected\":\"error MessageTooLarge(uint256 maxSize, uint256 actualSize);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\\\"};duplicate=1\",\"expected\":\"error StaleGasPrice(uint64 destChainSelector, uint256 threshold, uint256 timePassed);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\\\"};duplicate=1\",\"expected\":\"error TooManySVMExtraArgsAccounts(uint256 numAccounts, uint256 maxAccounts);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TooManySuiExtraArgsReceiverObjectIds(uint256 numReceiverObjectIds, uint256 maxReceiverObjectIds);\\\"};duplicate=1\",\"expected\":\"error TooManySuiExtraArgsReceiverObjectIds(uint256 numReceiverObjectIds, uint256 maxReceiverObjectIds);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\\\"};duplicate=1\",\"expected\":\"error UnsupportedNumberOfTokens(uint256 numberOfTokens, uint256 maxNumberOfTokensPerMsg);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function convertTokenAmount(address fromToken, uint256 fromTokenAmount, address toToken) public view returns (uint256);\\\"};duplicate=1\",\"expected\":\"function convertTokenAmount(address fromToken, uint256 fromTokenAmount, address toToken) public view returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getDestChainConfig(uint64 destChainSelector) external view returns (DestChainConfig memory);\\\"};duplicate=1\",\"expected\":\"function getDestChainConfig(uint64 destChainSelector) external view returns (DestChainConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getFeeTokens() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getFeeTokens() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getStaticConfig() external view returns (StaticConfig memory);\\\"};duplicate=1\",\"expected\":\"function getStaticConfig() external view returns (StaticConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenTransferFeeConfig(uint64 destChainSelector, address token) external view returns (TokenTransferFeeConfig memory);\\\"};duplicate=1\",\"expected\":\"function getTokenTransferFeeConfig(uint64 destChainSelector, address token) external view returns (TokenTransferFeeConfig memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getValidatedFee(uint64 destChainSelector, Client.EVM2AnyMessage calldata message) external view returns (uint256 feeTokenAmount);\\\"};duplicate=1\",\"expected\":\"function getValidatedFee(uint64 destChainSelector, Client.EVM2AnyMessage calldata message) external view returns (uint256 feeTokenAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant typeAndVersion = \\\\\\\"FeeQuoter 1.6.3\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant typeAndVersion = \\\"FeeQuoter 1.6.3\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\\\"};duplicate=1\",\"expected\":\"struct DestChainConfig { bool isEnabled; uint16 maxNumberOfTokensPerMsg; uint32 maxDataBytes; uint32 maxPerMsgGasLimit; uint32 destGasOverhead; uint8 destGasPerPayloadByteBase; uint8 destGasPerPayloadByteHigh; uint16 destGasPerPayloadByteThreshold; uint32 destDataAvailabilityOverheadGas; uint16 destGasPerDataAvailabilityByte; uint16 destDataAvailabilityMultiplierBps; bytes4 chainFamilySelector; bool enforceOutOfOrder; uint16 defaultTokenFeeUSDCents; uint32 defaultTokenDestGasOverhead; uint32 defaultTxGasLimit; uint64 gasMultiplierWeiPerEth; uint32 gasPriceStalenessThreshold; uint32 networkFeeUSDCents; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\\\"};duplicate=1\",\"expected\":\"struct StaticConfig { uint96 maxFeeJuelsPerMsg; address linkToken; uint32 tokenPriceStalenessThreshold; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\\\"};duplicate=1\",\"expected\":\"struct TokenTransferFeeConfig { uint32 minFeeUSDCents; uint32 maxFeeUSDCents; uint16 deciBps; uint32 destGasOverhead; uint32 destBytesOverhead; bool isEnabled; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint256 public constant FEE_BASE_DECIMALS = 36;\\\"};duplicate=1\",\"expected\":\"uint256 public constant FEE_BASE_DECIMALS = 36;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DestinationChainNotEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DestinationChainNotEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ExtraArgOutOfOrderExecutionMustBeTrue\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ExtraArgOutOfOrderExecutionMustBeTrue\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FEE_BASE_DECIMALS\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FEE_BASE_DECIMALS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeTokenNotSupported\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FeeTokenNotSupported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidChainFamilySelector\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidChainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidExtraArgsTag\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidExtraArgsTag\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSVMExtraArgsWritableBitmap\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSVMExtraArgsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenReceiver\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageComputeUnitLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageComputeUnitLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageFeeTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageFeeTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageGasLimitTooHigh\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageGasLimitTooHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MessageTooLarge\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MessageTooLarge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaleGasPrice\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaleGasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"StaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"StaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySVMExtraArgsAccounts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySVMExtraArgsAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TooManySuiExtraArgsReceiverObjectIds\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TooManySuiExtraArgsReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UnsupportedNumberOfTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"UnsupportedNumberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"convertTokenAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"convertTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getDestChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getDestChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getFeeTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getFeeTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getStaticConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getStaticConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenTransferFeeConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenTransferFeeConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getValidatedFee\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getValidatedFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DestChainConfig\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"DestChainConfig -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Internal\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/internal#state-variables\\\"};duplicate=1\",\"expected\":\"Internal -> /ccip/api-reference/evm/v1.6.3/internal#state-variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StaticConfig.maxFeeJuelsPerMsg\\\",\\\"url\\\":\\\"#staticconfig\\\"};duplicate=1\",\"expected\":\"StaticConfig.maxFeeJuelsPerMsg -> #staticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenTransferFeeConfig\\\",\\\"url\\\":\\\"#tokentransferfeeconfig\\\"};duplicate=1\",\"expected\":\"TokenTransferFeeConfig -> #tokentransferfeeconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"destination chain config\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=1\",\"expected\":\"destination chain config -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"destination chain config\\\",\\\"url\\\":\\\"#destchainconfig\\\"};duplicate=2\",\"expected\":\"destination chain config -> #destchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getDestChainConfig()\\\",\\\"url\\\":\\\"#getdestchainconfig\\\"};duplicate=1\",\"expected\":\"getDestChainConfig() -> #getdestchainconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getStaticConfig()\\\",\\\"url\\\":\\\"#getstaticconfig\\\"};duplicate=1\",\"expected\":\"getStaticConfig() -> #getstaticconfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\").\\\"};duplicate=1\",\"expected\":\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Actual message size that was too large\\\"};duplicate=1\",\"expected\":\"Actual message size that was too large\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the LINK token contract\\\"};duplicate=1\",\"expected\":\"Address of the LINK token contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Amount in source token\\\"};duplicate=1\",\"expected\":\"Amount in source token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of supported fee token addresses\\\"};duplicate=1\",\"expected\":\"Array of supported fee token addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Basis points charged on token transfers (multiples of 0.1bps, or 1e-5)\\\"};duplicate=1\",\"expected\":\"Basis points charged on token transfers (multiples of 0.1bps, or 1e-5)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated message fee in Juels\\\"};duplicate=1\",\"expected\":\"Calculated message fee in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the validated fee for sending a cross-chain message.\\\"};duplicate=1\",\"expected\":\"Calculates the validated fee for sending a cross-chain message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client.EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Client.EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains global limits and settings that cannot be changed after deployment. Retrieved via\\\"};duplicate=1\",\"expected\":\"Contains global limits and settings that cannot be changed after deployment. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a token amount from one token to another using current prices.\\\"};duplicate=1\",\"expected\":\"Converts a token amount from one token to another using current prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability bytes overhead, must be ≥ CCIP_LOCK_OR_BURN_V1_RET_BYTES\\\"};duplicate=1\",\"expected\":\"Data availability bytes overhead, must be ≥ CCIP_LOCK_OR_BURN_V1_RET_BYTES\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability cost (for rollups)\\\"};duplicate=1\",\"expected\":\"Data availability cost (for rollups)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data availability gas charged for overhead costs (e.g., OCR)\\\"};duplicate=1\",\"expected\":\"Data availability gas charged for overhead costs (e.g., OCR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged for token transfers on destination chain\\\"};duplicate=1\",\"expected\":\"Default gas charged for token transfers on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas charged per byte of data payload\\\"};duplicate=1\",\"expected\":\"Default gas charged per byte of data payload\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default gas limit for transactions\\\"};duplicate=1\",\"expected\":\"Default gas limit for transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Default token fee per transfer in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Default token fee per transfer in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines all fee calculation and validation parameters for a specific destination chain. Retrieved via\\\"};duplicate=1\",\"expected\":\"Defines all fee calculation and validation parameters for a specific destination chain. Retrieved via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Defines custom fee parameters for token transfers. When not enabled, default values from the\\\"};duplicate=1\",\"expected\":\"Defines custom fee parameters for token transfers. When not enabled, default values from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain configuration\\\"};duplicate=1\",\"expected\":\"Destination chain configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=1\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=2\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Destination chain selector\\\"};duplicate=3\",\"expected\":\"Destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Equivalent amount in target token\\\"};duplicate=1\",\"expected\":\"Equivalent amount in target token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execution gas cost on destination chain\\\"};duplicate=1\",\"expected\":\"Execution gas cost on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee amount in the message's fee token denomination\\\"};duplicate=1\",\"expected\":\"Fee amount in the message's fee token denomination\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flat network fee for messages in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Flat network fee for messages in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged on top of gasLimit to cover destination chain costs\\\"};duplicate=1\",\"expected\":\"Gas charged on top of gasLimit to cover destination chain costs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas charged to execute the token transfer on destination chain\\\"};duplicate=1\",\"expected\":\"Gas charged to execute the token transfer on destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas units charged per byte needing data availability\\\"};duplicate=1\",\"expected\":\"Gas units charged per byte needing data availability\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the configuration for a destination chain.\\\"};duplicate=1\",\"expected\":\"Gets the configuration for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the list of supported fee tokens.\\\"};duplicate=1\",\"expected\":\"Gets the list of supported fee tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the static configuration of the FeeQuoter.\\\"};duplicate=1\",\"expected\":\"Gets the static configuration of the FeeQuoter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the token transfer fee configuration for a specific token and destination chain.\\\"};duplicate=1\",\"expected\":\"Gets the token transfer fee configuration for a specific token and destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"High gas charged per byte of data payload (for EIP-7623 compliance)\\\"};duplicate=1\",\"expected\":\"High gas charged per byte of data payload (for EIP-7623 compliance)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed fee in Juels per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed fee in Juels per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed message size\\\"};duplicate=1\",\"expected\":\"Maximum allowed message size\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of accounts\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of accounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of receiver object IDs\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of receiver object IDs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum allowed number of tokens per message\\\"};duplicate=1\",\"expected\":\"Maximum allowed number of tokens per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum data payload size in bytes\\\"};duplicate=1\",\"expected\":\"Maximum data payload size in bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee per token transfer in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Maximum fee per token transfer in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum fee that can be charged for a message in Juels\\\"};duplicate=1\",\"expected\":\"Maximum fee that can be charged for a message in Juels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum gas limit for messages targeting EVMs\\\"};duplicate=1\",\"expected\":\"Maximum gas limit for messages targeting EVMs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum number of distinct ERC20 tokens per message\\\"};duplicate=1\",\"expected\":\"Maximum number of distinct ERC20 tokens per message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Message to calculate fee for\\\"};duplicate=1\",\"expected\":\"Message to calculate fee for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum fee per token transfer in USD cents (multiples of 0.01 USD)\\\"};duplicate=1\",\"expected\":\"Minimum fee per token transfer in USD cents (multiples of 0.01 USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for data availability gas (multiples of bps, or 0.0001)\\\"};duplicate=1\",\"expected\":\"Multiplier for data availability gas (multiples of bps, or 0.0001)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multiplier for gas costs (1e18 based, e.g., 11e17 = 10% extra cost)\\\"};duplicate=1\",\"expected\":\"Multiplier for gas costs (1e18 based, e.g., 11e17 = 10% extra cost)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network premium\\\"};duplicate=1\",\"expected\":\"Network premium\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts in the extra args\\\"};duplicate=1\",\"expected\":\"Number of accounts in the extra args\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of accounts provided\\\"};duplicate=1\",\"expected\":\"Number of accounts provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of receiver object IDs provided\\\"};duplicate=1\",\"expected\":\"Number of receiver object IDs provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number of tokens in the message\\\"};duplicate=1\",\"expected\":\"Number of tokens in the message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=1\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=2\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Properties\\\"};duplicate=3\",\"expected\":\"Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all tokens that can be used to pay for cross-chain message fees.\\\"};duplicate=1\",\"expected\":\"Returns all tokens that can be used to pay for cross-chain message fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns fee and validation parameters specific to the destination chain.\\\"};duplicate=1\",\"expected\":\"Returns fee and validation parameters specific to the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns immutable configuration values set at deployment.\\\"};duplicate=1\",\"expected\":\"Returns immutable configuration values set at deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the custom fee configuration for a token. If not enabled, default values from the\\\"};duplicate=1\",\"expected\":\"Returns the custom fee configuration for a token. If not enabled, default values from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Selector identifying the destination chain's family (see\\\"};duplicate=1\",\"expected\":\"Selector identifying the destination chain's family (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source token address\\\"};duplicate=1\",\"expected\":\"Source token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing fee and validation configuration for a destination chain.\\\"};duplicate=1\",\"expected\":\"Structure containing fee and validation configuration for a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure containing immutable FeeQuoter configuration set at deployment.\\\"};duplicate=1\",\"expected\":\"Structure containing immutable FeeQuoter configuration set at deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Structure representing the token transfer fee configuration for a specific token on a destination chain.\\\"};duplicate=1\",\"expected\":\"Structure representing the token transfer fee configuration for a specific token on a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Target token address\\\"};duplicate=1\",\"expected\":\"Target token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The base decimals used for fee calculations to maintain precision.\\\"};duplicate=1\",\"expected\":\"The base decimals used for fee calculations to maintain precision.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain selector\\\"};duplicate=1\",\"expected\":\"The destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The disabled destination chain selector\\\"};duplicate=1\",\"expected\":\"The disabled destination chain selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid chain family selector\\\"};duplicate=1\",\"expected\":\"The invalid chain family selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The provided writable bitmap\\\"};duplicate=1\",\"expected\":\"The provided writable bitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The staleness threshold in seconds\\\"};duplicate=1\",\"expected\":\"The staleness threshold in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The time passed since last update in seconds\\\"};duplicate=1\",\"expected\":\"The time passed since last update in seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The type and version of the FeeQuoter contract.\\\"};duplicate=1\",\"expected\":\"The type and version of the FeeQuoter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported fee token address\\\"};duplicate=1\",\"expected\":\"The unsupported fee token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unsupported token address\\\"};duplicate=1\",\"expected\":\"The unsupported token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Threshold at which billing switches from base to high rate\\\"};duplicate=1\",\"expected\":\"Threshold at which billing switches from base to high rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\\\"};duplicate=1\",\"expected\":\"Thrown when a destination chain enforces out-of-order execution but the extra args specify otherwise.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unsupported or invalid chain family selector is used during message validation.\\\"};duplicate=1\",\"expected\":\"Thrown when an unsupported or invalid chain family selector is used during message validation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to get the price or fee for an unsupported token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to get the price or fee for an unsupported token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to send a message to a disabled destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to send a message to a disabled destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unsupported token for fee payment.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unsupported token for fee payment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when extra args data is missing or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when extra args data is missing or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\\\"};duplicate=1\",\"expected\":\"Thrown when the SVM writable bitmap is invalid for the number of accounts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\\\"};duplicate=1\",\"expected\":\"Thrown when the calculated message fee exceeds the maximum allowed fee (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the extra args tag is invalid or unsupported.\\\"};duplicate=1\",\"expected\":\"Thrown when the extra args tag is invalid or unsupported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the gas price for a destination chain is stale.\\\"};duplicate=1\",\"expected\":\"Thrown when the gas price for a destination chain is stale.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\\\"};duplicate=1\",\"expected\":\"Thrown when the message compute unit limit exceeds the maximum allowed for Solana VM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message data payload exceeds the maximum allowed size.\\\"};duplicate=1\",\"expected\":\"Thrown when the message data payload exceeds the maximum allowed size.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\\\"};duplicate=1\",\"expected\":\"Thrown when the message gas limit exceeds the maximum allowed for the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the number of tokens in a message exceeds the maximum allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when the number of tokens in a message exceeds the maximum allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\\\"};duplicate=1\",\"expected\":\"Thrown when the token receiver is invalid for SVM or SUI chains, typically when it's zero and tokens are being transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many accounts are specified in SVM (Solana) extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many accounts are specified in SVM (Solana) extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when too many receiver object IDs are specified in SUI extra args.\\\"};duplicate=1\",\"expected\":\"Thrown when too many receiver object IDs are specified in SUI extra args.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds before a token price is considered stale\\\"};duplicate=1\",\"expected\":\"Time in seconds before a token price is considered stale\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time in seconds before gas price is considered stale (0 = disabled)\\\"};duplicate=1\",\"expected\":\"Time in seconds before gas price is considered stale (0 = disabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token address\\\"};duplicate=1\",\"expected\":\"Token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token transfer fee configuration for the token\\\"};duplicate=1\",\"expected\":\"Token transfer fee configuration for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token transfer fees\\\"};duplicate=1\",\"expected\":\"Token transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Useful for converting fee amounts between tokens using current token prices.\\\"};duplicate=1\",\"expected\":\"Useful for converting fee amounts between tokens using current token prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the message, destination chain, and fee token before calculating the total fee. The fee includes:\\\"};duplicate=1\",\"expected\":\"Validates the message, destination chain, and fee token before calculating the total fee. The fee includes:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this destination chain is enabled\\\"};duplicate=1\",\"expected\":\"Whether this destination chain is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether this token has custom transfer fees\\\"};duplicate=1\",\"expected\":\"Whether this token has custom transfer fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether to enforce allowOutOfOrderExecution extraArg to be true\\\"};duplicate=1\",\"expected\":\"Whether to enforce allowOutOfOrderExecution extraArg to be true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"accountIsWritableBitmap\\\"};duplicate=1\",\"expected\":\"accountIsWritableBitmap\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actualSize\\\"};duplicate=1\",\"expected\":\"actualSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"are used instead.\\\"};duplicate=1\",\"expected\":\"are used instead.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"are used.\\\"};duplicate=1\",\"expected\":\"are used.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=2\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=1\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainFamilySelector\\\"};duplicate=2\",\"expected\":\"chainFamilySelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"deciBps\\\"};duplicate=1\",\"expected\":\"deciBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenDestGasOverhead\\\"};duplicate=1\",\"expected\":\"defaultTokenDestGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTokenFeeUSDCents\\\"};duplicate=1\",\"expected\":\"defaultTokenFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"defaultTxGasLimit\\\"};duplicate=1\",\"expected\":\"defaultTxGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destBytesOverhead\\\"};duplicate=1\",\"expected\":\"destBytesOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=1\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=2\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=3\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=4\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destChainSelector\\\"};duplicate=5\",\"expected\":\"destChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityMultiplierBps\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityMultiplierBps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destDataAvailabilityOverheadGas\\\"};duplicate=1\",\"expected\":\"destDataAvailabilityOverheadGas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=1\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasOverhead\\\"};duplicate=2\",\"expected\":\"destGasOverhead\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerDataAvailabilityByte\\\"};duplicate=1\",\"expected\":\"destGasPerDataAvailabilityByte\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteBase\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteBase\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteHigh\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteHigh\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destGasPerPayloadByteThreshold\\\"};duplicate=1\",\"expected\":\"destGasPerPayloadByteThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"enforceOutOfOrder\\\"};duplicate=1\",\"expected\":\"enforceOutOfOrder\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromTokenAmount\\\"};duplicate=1\",\"expected\":\"fromTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fromToken\\\"};duplicate=1\",\"expected\":\"fromToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasMultiplierWeiPerEth\\\"};duplicate=1\",\"expected\":\"gasMultiplierWeiPerEth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"gasPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=1\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled\\\"};duplicate=2\",\"expected\":\"isEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"linkToken\\\"};duplicate=1\",\"expected\":\"linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxAccounts\\\"};duplicate=1\",\"expected\":\"maxAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxDataBytes\\\"};duplicate=1\",\"expected\":\"maxDataBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=1\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeJuelsPerMsg\\\"};duplicate=2\",\"expected\":\"maxFeeJuelsPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxFeeUSDCents\\\"};duplicate=1\",\"expected\":\"maxFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=1\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxNumberOfTokensPerMsg\\\"};duplicate=2\",\"expected\":\"maxNumberOfTokensPerMsg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxPerMsgGasLimit\\\"};duplicate=1\",\"expected\":\"maxPerMsgGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxReceiverObjectIds\\\"};duplicate=1\",\"expected\":\"maxReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"maxSize\\\"};duplicate=1\",\"expected\":\"maxSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=1\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minFeeUSDCents\\\"};duplicate=1\",\"expected\":\"minFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"msgFeeJuels\\\"};duplicate=1\",\"expected\":\"msgFeeJuels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkFeeUSDCents\\\"};duplicate=1\",\"expected\":\"networkFeeUSDCents\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=1\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numAccounts\\\"};duplicate=2\",\"expected\":\"numAccounts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numReceiverObjectIds\\\"};duplicate=1\",\"expected\":\"numReceiverObjectIds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"numberOfTokens\\\"};duplicate=1\",\"expected\":\"numberOfTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"threshold\\\"};duplicate=1\",\"expected\":\"threshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timePassed\\\"};duplicate=1\",\"expected\":\"timePassed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"toToken\\\"};duplicate=1\",\"expected\":\"toToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenPriceStalenessThreshold\\\"};duplicate=1\",\"expected\":\"tokenPriceStalenessThreshold\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=1\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=2\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=3\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=4\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=5\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint16\\\"};duplicate=6\",\"expected\":\"uint16\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=10\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=11\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=12\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=13\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=14\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=15\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=16\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=9\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=1\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=10\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=11\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=12\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=13\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=2\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=3\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=4\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=5\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=6\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=7\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=8\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32\\\"};duplicate=9\",\"expected\":\"uint32\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint96\\\"};duplicate=1\",\"expected\":\"uint96\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/fee-quoter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if the given chain ID is supported for sending/receiving.\\\"};duplicate=1\",\"expected\":\"Checks if the given chain ID is supported for sending/receiving.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/i-router-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/i-router-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/i-type-and-version\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for Aptos chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector APTOS\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for Aptos chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector APTOS\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for EVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector EVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for EVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector EVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for SVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for SVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for Sui chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector SUI\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for Sui chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector SUI\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain family selector for TVM chains: bytes4(keccak256(\\\\\\\"CCIP ChainFamilySelector TVM\\\\\\\")).\\\"};duplicate=1\",\"expected\":\"Chain family selector for TVM chains: bytes4(keccak256(\\\"CCIP ChainFamilySelector TVM\\\")).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/internal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rebalancer;\\\"};duplicate=1\",\"expected\":\"address internal s_rebalancer;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_acceptLiquidity;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_acceptLiquidity;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\\\"};duplicate=1\",\"expected\":\"constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InsufficientLiquidity();\\\"};duplicate=1\",\"expected\":\"error InsufficientLiquidity();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error LiquidityNotAccepted();\\\"};duplicate=1\",\"expected\":\"error LiquidityNotAccepted();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RebalancerSet(address oldRebalancer, address newRebalancer);\\\"};duplicate=1\",\"expected\":\"event RebalancerSet(address oldRebalancer, address newRebalancer);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _releaseOrMint(address receiver, uint256 amount) internal virtual override;\\\"};duplicate=1\",\"expected\":\"function _releaseOrMint(address receiver, uint256 amount) internal virtual override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function canAcceptLiquidity() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function canAcceptLiquidity() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRebalancer() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRebalancer() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function provideLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function provideLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRebalancer(address rebalancer) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRebalancer(address rebalancer) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferLiquidity(address from, uint256 amount) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function withdrawLiquidity(uint256 amount) external;\\\"};duplicate=1\",\"expected\":\"function withdrawLiquidity(uint256 amount) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"string public constant override typeAndVersion = \\\\\\\"LockReleaseTokenPool 1.6.3\\\\\\\";\\\"};duplicate=1\",\"expected\":\"string public constant override typeAndVersion = \\\"LockReleaseTokenPool 1.6.3\\\";\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InsufficientLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InsufficientLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LiquidityNotAccepted\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LiquidityNotAccepted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RebalancerSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RebalancerSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"canAcceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"canAcceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_acceptLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"provideLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"provideLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"typeAndVersion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"typeAndVersion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"withdrawLiquidity\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"withdrawLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/token-pool#_releaseormint\\\"};duplicate=1\",\"expected\":\"_releaseOrMint -> /ccip/api-reference/evm/v1.6.3/token-pool#_releaseormint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setRebalancer\\\",\\\"url\\\":\\\"#setrebalancer\\\"};duplicate=1\",\"expected\":\"setRebalancer -> #setrebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant identifier specifying the contract type and version number.\\\"};duplicate=1\",\"expected\":\"A constant identifier specifying the contract type and version number.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the RMN proxy contract\\\"};duplicate=1\",\"expected\":\"Address of the RMN proxy contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Address of the router contract\\\"};duplicate=1\",\"expected\":\"Address of the router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds external liquidity to the pool.\\\"};duplicate=1\",\"expected\":\"Adds external liquidity to the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the owner to update the liquidity manager (rebalancer) address.\\\"};duplicate=1\",\"expected\":\"Allows the owner to update the liquidity manager (rebalancer) address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to add liquidity to the pool:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to add liquidity to the pool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows the rebalancer to withdraw liquidity:\\\"};duplicate=1\",\"expected\":\"Allows the rebalancer to withdraw liquidity:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP handles mint/burn operations on other chains\\\"};duplicate=1\",\"expected\":\"CCIP handles mint/burn operations on other chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Can be used in conjunction with TokenAdminRegistry updates\\\"};duplicate=1\",\"expected\":\"Can be used in conjunction with TokenAdminRegistry updates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configures decimal precision for local tokens\\\"};duplicate=1\",\"expected\":\"Configures decimal precision for local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Determines whether the pool can accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Determines whether the pool can accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when liquidity is transferred from an older pool version during an upgrade.\\\"};duplicate=1\",\"expected\":\"Emitted when liquidity is transferred from an older pool version during an upgrade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rebalancer (liquidity manager) address is updated via\\\"};duplicate=1\",\"expected\":\"Emitted when the rebalancer (liquidity manager) address is updated via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enables smooth transition of liquidity and transactions\\\"};duplicate=1\",\"expected\":\"Enables smooth transition of liquidity and transactions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Establishes the initial whitelist\\\"};duplicate=1\",\"expected\":\"Establishes the initial whitelist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Facilitates pool upgrades by transferring liquidity from an older pool version:\\\"};duplicate=1\",\"expected\":\"Facilitates pool upgrades by transferring liquidity from an older pool version:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\\\"};duplicate=1\",\"expected\":\"Immutable flag indicating whether the pool accepts external liquidity. This setting cannot be changed after deployment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial list of authorized addresses\\\"};duplicate=1\",\"expected\":\"Initial list of authorized addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the token pool with its configuration parameters:\\\"};duplicate=1\",\"expected\":\"Initializes the token pool with its configuration parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function that implements the token release logic for a LockReleaseTokenPool.\\\"};duplicate=1\",\"expected\":\"Internal function that implements the token release logic for a LockReleaseTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Links to the RMN proxy and router\\\"};duplicate=1\",\"expected\":\"Links to the RMN proxy and router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=3\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=1\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the authorized rebalancer\\\"};duplicate=2\",\"expected\":\"Only callable by the authorized rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only works if the pool accepts liquidity\\\"};duplicate=1\",\"expected\":\"Only works if the pool accepts liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overrides the virtual\\\"};duplicate=1\",\"expected\":\"Overrides the virtual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\\\"};duplicate=1\",\"expected\":\"Provides the address of the current liquidity manager (rebalancer). Can return address(0) if none is configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides the specific \\\\\\\"release\\\\\\\" implementation for the LockReleaseTokenPool.\\\"};duplicate=1\",\"expected\":\"Provides the specific \\\"release\\\" implementation for the LockReleaseTokenPool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes liquidity from the pool.\\\"};duplicate=1\",\"expected\":\"Removes liquidity from the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires prior token approval\\\"};duplicate=1\",\"expected\":\"Requires prior token approval\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires sufficient pool balance\\\"};duplicate=1\",\"expected\":\"Requires sufficient pool balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requires this pool to be set as rebalancer in the source pool\\\"};duplicate=1\",\"expected\":\"Requires this pool to be set as rebalancer in the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rebalancer address.\\\"};duplicate=1\",\"expected\":\"Returns the current rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\\\"};duplicate=1\",\"expected\":\"Returns the immutable configuration indicating if the pool accepts external liquidity. External liquidity might not be required when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the liquidity acceptance policy\\\"};duplicate=1\",\"expected\":\"Sets the liquidity acceptance policy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the token contract reference\\\"};duplicate=1\",\"expected\":\"Sets up the token contract reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports both atomic and gradual migration strategies\\\"};duplicate=1\",\"expected\":\"Supports both atomic and gradual migration strategies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\\\"};duplicate=1\",\"expected\":\"The address of the current rebalancer (liquidity manager) authorized to manage pool liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the new rebalancer\\\"};duplicate=1\",\"expected\":\"The address of the new rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the previous rebalancer\\\"};duplicate=1\",\"expected\":\"The address of the previous rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the source pool\\\"};duplicate=1\",\"expected\":\"The address of the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to receive the tokens\\\"};duplicate=1\",\"expected\":\"The address to receive the tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to provide\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to provide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity to transfer\\\"};duplicate=1\",\"expected\":\"The amount of liquidity to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of liquidity transferred\\\"};duplicate=1\",\"expected\":\"The amount of liquidity transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current liquidity manager address\\\"};duplicate=1\",\"expected\":\"The current liquidity manager address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimal precision for the local token\\\"};duplicate=1\",\"expected\":\"The decimal precision for the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\\\\\"wrapped\\\\\\\" token) on all remote chains) is maintained\\\"};duplicate=1\",\"expected\":\"The invariant balanceOf(pool) on home chain >= sum(totalSupply(mint/burn \\\"wrapped\\\" token) on all remote chains) is maintained\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new rebalancer address to set\\\"};duplicate=1\",\"expected\":\"The new rebalancer address to set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to release\\\"};duplicate=1\",\"expected\":\"The number of tokens to release\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source pool address\\\"};duplicate=1\",\"expected\":\"The source pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to manage\\\"};duplicate=1\",\"expected\":\"The token contract to manage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There is one canonical token on the chain\\\"};duplicate=1\",\"expected\":\"There is one canonical token on the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to provide liquidity to a pool that doesn't accept external liquidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to withdraw more liquidity than available in the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to withdraw more liquidity than available in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers liquidity from an older pool version.\\\"};duplicate=1\",\"expected\":\"Transfers liquidity from an older pool version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens directly to the caller\\\"};duplicate=1\",\"expected\":\"Transfers tokens directly to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"True if the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rebalancer address.\\\"};duplicate=1\",\"expected\":\"Updates the rebalancer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses safeTransfer to send the specified amount of tokens to the receiver.\\\"};duplicate=1\",\"expected\":\"Uses safeTransfer to send the specified amount of tokens to the receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the pool accepts external liquidity\\\"};duplicate=1\",\"expected\":\"Whether the pool accepts external liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"acceptLiquidity\\\"};duplicate=1\",\"expected\":\"acceptLiquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=3\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the base TokenPool contract:\\\"};duplicate=1\",\"expected\":\"function from the base TokenPool contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRebalancer\\\"};duplicate=1\",\"expected\":\"newRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"oldRebalancer\\\"};duplicate=1\",\"expected\":\"oldRebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rebalancer\\\"};duplicate=1\",\"expected\":\"rebalancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_owner;\\\"};duplicate=1\",\"expected\":\"address private s_owner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address private s_pendingOwner;\\\"};duplicate=1\",\"expected\":\"address private s_pendingOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address newOwner, address pendingOwner);\\\"};duplicate=1\",\"expected\":\"constructor(address newOwner, address pendingOwner);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CannotTransferToSelf();\\\"};duplicate=1\",\"expected\":\"error CannotTransferToSelf();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MustBeProposedOwner();\\\"};duplicate=1\",\"expected\":\"error MustBeProposedOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OwnerCannotBeZero();\\\"};duplicate=1\",\"expected\":\"error OwnerCannotBeZero();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event OwnershipTransferred(address indexed from, address indexed to);\\\"};duplicate=1\",\"expected\":\"event OwnershipTransferred(address indexed from, address indexed to);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function acceptOwnership() external override;\\\"};duplicate=1\",\"expected\":\"function acceptOwnership() external override;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function owner() public view override returns (address);\\\"};duplicate=1\",\"expected\":\"function owner() public view override returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function transferOwnership(address to) public override onlyOwner;\\\"};duplicate=1\",\"expected\":\"function transferOwnership(address to) public override onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"modifier onlyOwner();\\\"};duplicate=1\",\"expected\":\"modifier onlyOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CannotTransferToSelf\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CannotTransferToSelf\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MustBeProposedOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MustBeProposedOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnerCannotBeZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnerCannotBeZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OwnershipTransferred\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OwnershipTransferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"acceptOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"acceptOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"onlyOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"onlyOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_owner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_pendingOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"transferOwnership\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"transferOwnership\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an owner to begin transferring ownership to a new address.\\\"};duplicate=1\",\"expected\":\"Allows an owner to begin transferring ownership to a new address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows an ownership transfer to be completed by the recipient.\\\"};duplicate=1\",\"expected\":\"Allows an ownership transfer to be completed by the recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CannotTransferToSelf if attempting to transfer to current owner\\\"};duplicate=1\",\"expected\":\"CannotTransferToSelf if attempting to transfer to current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clears pending owner\\\"};duplicate=1\",\"expected\":\"Clears pending owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current owner initiating the transfer\\\"};duplicate=1\",\"expected\":\"Current owner initiating the transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits OwnershipTransferred event\\\"};duplicate=1\",\"expected\":\"Emits OwnershipTransferred event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an ownership transfer is completed.\\\"};duplicate=1\",\"expected\":\"Emitted when an ownership transfer is completed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the current owner initiates an ownership transfer.\\\"};duplicate=1\",\"expected\":\"Emitted when the current owner initiates an ownership transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\\\"};duplicate=1\",\"expected\":\"If pendingOwner is not address(0), initiates ownership transfer to pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with an owner and optionally a pending owner.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with an owner and optionally a pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Modifier that restricts function access to the contract owner.\\\"};duplicate=1\",\"expected\":\"Modifier that restricts function access to the contract owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"New owner\\\"};duplicate=1\",\"expected\":\"New owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OnlyCallableByOwner if caller is not the current owner\\\"};duplicate=1\",\"expected\":\"OnlyCallableByOwner if caller is not the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional address to initiate ownership transfer to\\\"};duplicate=1\",\"expected\":\"Optional address to initiate ownership transfer to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous owner\\\"};duplicate=1\",\"expected\":\"Previous owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposed new owner\\\"};duplicate=1\",\"expected\":\"Proposed new owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current owner's address.\\\"};duplicate=1\",\"expected\":\"Returns the current owner's address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with MustBeProposedOwner if caller is not the pending owner.\\\"};duplicate=1\",\"expected\":\"Reverts with MustBeProposedOwner if caller is not the pending owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner. Used by the onlyOwner modifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OnlyCallableByOwner if caller is not the current owner.\\\"};duplicate=1\",\"expected\":\"Reverts with OnlyCallableByOwner if caller is not the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with OwnerCannotBeZero if newOwner is address(0)\\\"};duplicate=1\",\"expected\":\"Reverts with OwnerCannotBeZero if newOwner is address(0)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets newOwner as the initial owner\\\"};duplicate=1\",\"expected\":\"Sets newOwner as the initial owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current owner\\\"};duplicate=1\",\"expected\":\"The address of the current owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The initial owner of the contract\\\"};duplicate=1\",\"expected\":\"The initial owner of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\\\"};duplicate=1\",\"expected\":\"The new owner must call acceptOwnership to complete the transfer. No permissions are changed until acceptance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the current owner of the contract.\\\"};duplicate=1\",\"expected\":\"The owner is the current owner of the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\\\"};duplicate=1\",\"expected\":\"The owner is the second storage variable so any implementing contract could pack other state with it instead of the much less used s_pendingOwner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pending owner is the address to which ownership may be transferred.\\\"};duplicate=1\",\"expected\":\"The pending owner is the address to which ownership may be transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by someone other than the owner.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by someone other than the owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set the owner to address(0).\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set the owner to address(0).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to transfer ownership to the current owner.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to transfer ownership to the current owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when someone other than the pending owner tries to accept ownership.\\\"};duplicate=1\",\"expected\":\"Thrown when someone other than the pending owner tries to accept ownership.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates owner to the caller\\\"};duplicate=1\",\"expected\":\"Updates owner to the caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When successful:\\\"};duplicate=1\",\"expected\":\"When successful:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=2\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newOwner\\\"};duplicate=1\",\"expected\":\"newOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pendingOwner\\\"};duplicate=1\",\"expected\":\"pendingOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=2\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/ownable-2-step-msg-sender\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\\\"};duplicate=1\",\"expected\":\"error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\\\"};duplicate=1\",\"expected\":\"error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error BucketOverfilled();\\\"};duplicate=1\",\"expected\":\"error BucketOverfilled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error DisabledNonZeroRateLimit(Config config);\\\"};duplicate=1\",\"expected\":\"error DisabledNonZeroRateLimit(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRateLimitRate(Config rateLimiterConfig);\\\"};duplicate=1\",\"expected\":\"error InvalidRateLimitRate(Config rateLimiterConfig);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyCallableByAdminOrOwner();\\\"};duplicate=1\",\"expected\":\"error OnlyCallableByAdminOrOwner();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error RateLimitMustBeDisabled();\\\"};duplicate=1\",\"expected\":\"error RateLimitMustBeDisabled();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\\\"};duplicate=1\",\"expected\":\"error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event ConfigChanged(Config config);\\\"};duplicate=1\",\"expected\":\"event ConfigChanged(Config config);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function _currentTokenBucketState(TokenBucket memory bucket) internal view returns (TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _min(uint256 a, uint256 b) internal pure returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\\\"};duplicate=1\",\"expected\":\"function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\\\"};duplicate=1\",\"expected\":\"function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct Config { bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\\\"};duplicate=1\",\"expected\":\"struct TokenBucket { uint128 tokens; uint32 lastUpdated; bool isEnabled; uint128 capacity; uint128 rate; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AggregateValueRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AggregateValueRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BucketOverfilled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"BucketOverfilled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ConfigChanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Config\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRateLimitRate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyCallableByAdminOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyCallableByAdminOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenBucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenRateLimitReached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateRefill\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateRefill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consume\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_currentTokenBucketState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_min\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_min\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateTokenBucketConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateTokenBucketConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ConfigChanged\\\",\\\"url\\\":\\\"#configchanged\\\"};duplicate=1\",\"expected\":\"ConfigChanged -> #configchanged\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=1\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=2\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=3\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=4\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=5\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=6\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Config\\\",\\\"url\\\":\\\"#config\\\"};duplicate=7\",\"expected\":\"Config -> #config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"DisabledNonZeroRateLimit\\\",\\\"url\\\":\\\"#disablednonzeroratelimit\\\"};duplicate=1\",\"expected\":\"DisabledNonZeroRateLimit -> #disablednonzeroratelimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRateLimitRate\\\",\\\"url\\\":\\\"#invalidratelimitrate\\\"};duplicate=1\",\"expected\":\"InvalidRateLimitRate -> #invalidratelimitrate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimitMustBeDisabled\\\",\\\"url\\\":\\\"#ratelimitmustbedisabled\\\"};duplicate=1\",\"expected\":\"RateLimitMustBeDisabled -> #ratelimitmustbedisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=1\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=2\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=3\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=4\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=5\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=6\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=7\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=8\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenBucket\\\",\\\"url\\\":\\\"#tokenbucket\\\"};duplicate=9\",\"expected\":\"TokenBucket -> #tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenMaxCapacityExceeded\\\",\\\"url\\\":\\\"#tokenmaxcapacityexceeded\\\"};duplicate=1\",\"expected\":\"TokenMaxCapacityExceeded -> #tokenmaxcapacityexceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenRateLimitReached\\\",\\\"url\\\":\\\"#tokenratelimitreached\\\"};duplicate=1\",\"expected\":\"TokenRateLimitReached -> #tokenratelimitreached\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokensConsumed\\\",\\\"url\\\":\\\"#tokensconsumed\\\"};duplicate=1\",\"expected\":\"TokensConsumed -> #tokensconsumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"_currentTokenBucketState\\\",\\\"url\\\":\\\"#_currenttokenbucketstate\\\"};duplicate=1\",\"expected\":\"_currentTokenBucketState -> #_currenttokenbucketstate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=1\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"'s capacity.\\\"};duplicate=2\",\"expected\":\"'s capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or\\\"};duplicate=1\",\"expected\":\", or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adjusts token amount to respect new capacity\\\"};duplicate=1\",\"expected\":\"Adjusts token amount to respect new capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically refills tokens based on elapsed time\\\"};duplicate=1\",\"expected\":\"Automatically refills tokens based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the number of tokens to add during a refill operation.\\\"};duplicate=1\",\"expected\":\"Calculates the number of tokens to add during a refill operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates token refill based on elapsed time\\\"};duplicate=1\",\"expected\":\"Calculates token refill based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes tokens to add based on elapsed time and rate\\\"};duplicate=1\",\"expected\":\"Computes tokens to add based on elapsed time and rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration parameters for the rate limiter.\\\"};duplicate=1\",\"expected\":\"Configuration parameters for the rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration structure used to configure\\\"};duplicate=1\",\"expected\":\"Configuration structure used to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration update process:\\\"};duplicate=1\",\"expected\":\"Configuration update process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current token balance\\\"};duplicate=1\",\"expected\":\"Current token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the rate limiter\\\"};duplicate=1\",\"expected\":\"Emitted when the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are successfully consumed from the\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are successfully consumed from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enforces capacity and rate limits\\\"};duplicate=1\",\"expected\":\"Enforces capacity and rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures result doesn't exceed bucket capacity\\\"};duplicate=1\",\"expected\":\"Ensures result doesn't exceed bucket capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"First number\\\"};duplicate=1\",\"expected\":\"First number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For disabled configurations:\\\"};duplicate=1\",\"expected\":\"For disabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For enabled configurations:\\\"};duplicate=1\",\"expected\":\"For enabled configurations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key behaviors:\\\"};duplicate=1\",\"expected\":\"Key behaviors:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum token capacity\\\"};duplicate=1\",\"expected\":\"Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"May throw\\\"};duplicate=1\",\"expected\":\"May throw\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate and capacity must be zero\\\"};duplicate=1\",\"expected\":\"Rate and capacity must be zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate must be non-zero and less than capacity\\\"};duplicate=1\",\"expected\":\"Rate must be non-zero and less than capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refill calculation:\\\"};duplicate=1\",\"expected\":\"Refill calculation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\\\"};duplicate=1\",\"expected\":\"Removes tokens from the pool, reducing the available rate capacity for subsequent calls.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Represents the state and configuration of a token bucket rate limiter.\\\"};duplicate=1\",\"expected\":\"Represents the state and configuration of a token bucket rate limiter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the current state of a token bucket, including automatic refill calculations.\\\"};duplicate=1\",\"expected\":\"Retrieves the current state of a token bucket, including automatic refill calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state without modifying storage\\\"};duplicate=1\",\"expected\":\"Returns the current state without modifying storage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the new token balance\\\"};duplicate=1\",\"expected\":\"Returns the new token balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the smaller of two numbers.\\\"};duplicate=1\",\"expected\":\"Returns the smaller of two numbers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Second number\\\"};duplicate=1\",\"expected\":\"Second number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Skips execution if rate limiting is disabled or requestTokens is zero\\\"};duplicate=1\",\"expected\":\"Skips execution if rate limiting is disabled or requestTokens is zero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"State management structure:\\\"};duplicate=1\",\"expected\":\"State management structure:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The configuration to validate\\\"};duplicate=1\",\"expected\":\"The configuration to validate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The current state of the token bucket\\\"};duplicate=1\",\"expected\":\"The current state of the token bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration applied\\\"};duplicate=1\",\"expected\":\"The new configuration applied\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new configuration to apply\\\"};duplicate=1\",\"expected\":\"The new configuration to apply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new token balance after refill\\\"};duplicate=1\",\"expected\":\"The new token balance after refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens consumed\\\"};duplicate=1\",\"expected\":\"The number of tokens consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of tokens to consume\\\"};duplicate=1\",\"expected\":\"The number of tokens to consume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address (use address(0) for aggregate value capacity)\\\"};duplicate=1\",\"expected\":\"The token address (use address(0) for aggregate value capacity)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to configure\\\"};duplicate=1\",\"expected\":\"The token bucket to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token bucket to consume from\\\"};duplicate=1\",\"expected\":\"The token bucket to consume from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct uses the configuration parameters defined in\\\"};duplicate=1\",\"expected\":\"This struct uses the configuration parameters defined in\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a disabled\\\"};duplicate=1\",\"expected\":\"Thrown when a disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a restricted function is called by an unauthorized address.\\\"};duplicate=1\",\"expected\":\"Thrown when a restricted function is called by an unauthorized address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more aggregate value than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more aggregate value than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than currently available in the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than currently available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to consume more tokens than the\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to consume more tokens than the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to enable rate limiting in a context where it must be disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the rate limit\\\"};duplicate=1\",\"expected\":\"Thrown when the rate limit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the\\\"};duplicate=1\",\"expected\":\"Thrown when the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time elapsed since last refill (in seconds)\\\"};duplicate=1\",\"expected\":\"Time elapsed since last refill (in seconds)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokens per second refill rate\\\"};duplicate=1\",\"expected\":\"Tokens per second refill rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket parameters (enabled state, capacity, rate)\\\"};duplicate=1\",\"expected\":\"Updates bucket parameters (enabled state, capacity, rate)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates bucket state with current refill before applying changes\\\"};duplicate=1\",\"expected\":\"Updates bucket state with current refill before applying changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the bucket state to reflect the current block timestamp:\\\"};duplicate=1\",\"expected\":\"Updates the bucket state to reflect the current block timestamp:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the lastUpdated timestamp\\\"};duplicate=1\",\"expected\":\"Updates the lastUpdated timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the rate limiter configuration.\\\"};duplicate=1\",\"expected\":\"Updates the rate limiter configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used internally by\\\"};duplicate=1\",\"expected\":\"Used internally by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Utility function for safe minimum value calculation.\\\"};duplicate=1\",\"expected\":\"Utility function for safe minimum value calculation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates against mustBeDisabled requirement\\\"};duplicate=1\",\"expected\":\"Validates against mustBeDisabled requirement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates rate limiter configuration parameters.\\\"};duplicate=1\",\"expected\":\"Validates rate limiter configuration parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validation rules:\\\"};duplicate=1\",\"expected\":\"Validation rules:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whether the configuration must be disabled\\\"};duplicate=1\",\"expected\":\"Whether the configuration must be disabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"a\\\"};duplicate=1\",\"expected\":\"a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"b\\\"};duplicate=1\",\"expected\":\"b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=1\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity: Maximum token capacity\\\"};duplicate=2\",\"expected\":\"capacity: Maximum token capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"capacity\\\"};duplicate=1\",\"expected\":\"capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=1\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=2\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"config\\\"};duplicate=3\",\"expected\":\"config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contains more tokens than its capacity.\\\"};duplicate=1\",\"expected\":\"contains more tokens than its capacity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event for non-zero consumption\\\"};duplicate=1\",\"expected\":\"event for non-zero consumption\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"has non-zero rate or capacity values.\\\"};duplicate=1\",\"expected\":\"has non-zero rate or capacity values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is invalid (rate is zero or exceeds capacity).\\\"};duplicate=1\",\"expected\":\"is invalid (rate is zero or exceeds capacity).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"is updated.\\\"};duplicate=1\",\"expected\":\"is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Activation state of the rate limiter\\\"};duplicate=1\",\"expected\":\"isEnabled: Activation state of the rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"isEnabled: Whether rate limiting is active\\\"};duplicate=1\",\"expected\":\"isEnabled: Whether rate limiting is active\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\\\"};duplicate=1\",\"expected\":\"lastUpdated: Timestamp of the last refill (in seconds, supports 100+ years)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"mustBeDisabled\\\"};duplicate=1\",\"expected\":\"mustBeDisabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on violations\\\"};duplicate=1\",\"expected\":\"on violations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Token refill rate per second\\\"};duplicate=1\",\"expected\":\"rate: Token refill rate per second\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate: Tokens added per second during refill\\\"};duplicate=1\",\"expected\":\"rate: Tokens added per second during refill\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rate\\\"};duplicate=1\",\"expected\":\"rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requestTokens\\\"};duplicate=1\",\"expected\":\"requestTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=1\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"s_bucket\\\"};duplicate=2\",\"expected\":\"s_bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timeDiff\\\"};duplicate=1\",\"expected\":\"timeDiff\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=1\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens: Current token balance in the bucket\\\"};duplicate=1\",\"expected\":\"tokens: Current token balance in the bucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=8\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/rate-limiter\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(address tokenAdminRegistry);\\\"};duplicate=1\",\"expected\":\"constructor(address tokenAdminRegistry);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _registerAdmin(address token, address admin) internal;\\\"};duplicate=1\",\"expected\":\"function _registerAdmin(address token, address admin) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAccessControlDefaultAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAccessControlDefaultAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaGetCCIPAdmin(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaGetCCIPAdmin(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function registerAdminViaOwner(address token) external;\\\"};duplicate=1\",\"expected\":\"function registerAdminViaOwner(address token) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_registerAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_registerAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAccessControlDefaultAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAccessControlDefaultAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaGetCCIPAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaGetCCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerAdminViaOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerAdminViaOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"url\\\":\\\"#addresszero\\\"};duplicate=1\",\"expected\":\"AddressZero -> #addresszero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=1\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AdministratorRegistered\\\",\\\"url\\\":\\\"#administratorregistered\\\"};duplicate=2\",\"expected\":\"AdministratorRegistered -> #administratorregistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=1\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CanOnlySelfRegister\\\",\\\"url\\\":\\\"#canonlyselfregister\\\"};duplicate=2\",\"expected\":\"CanOnlySelfRegister -> #canonlyselfregister\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RequiredRoleNotFound\\\",\\\"url\\\":\\\"#requiredrolenotfound\\\"};duplicate=1\",\"expected\":\"RequiredRoleNotFound -> #requiredrolenotfound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"TokenAdminRegistry\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/token-admin-registry\\\"};duplicate=1\",\"expected\":\"TokenAdminRegistry -> /ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=2\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's getCCIPAdmin method\\\"};duplicate=1\",\"expected\":\"Calls token's getCCIPAdmin method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls token's owner method\\\"};duplicate=1\",\"expected\":\"Calls token's owner method\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Core registration logic:\\\"};duplicate=1\",\"expected\":\"Core registration logic:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with a reference to the\\\"};duplicate=1\",\"expected\":\"Initializes the contract with a reference to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to handle administrator registration.\\\"};duplicate=1\",\"expected\":\"Internal function to handle administrator registration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=1\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only allows self-registration (reverts with\\\"};duplicate=2\",\"expected\":\"Only allows self-registration (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes administrator to registry\\\"};duplicate=1\",\"expected\":\"Proposes administrator to registry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using OpenZeppelin's AccessControl DEFAULT_ADMIN_ROLE.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the getCCIPAdmin method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the getCCIPAdmin method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registers a token administrator using the owner method.\\\"};duplicate=1\",\"expected\":\"Registers a token administrator using the owner method.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up the immutable registry reference\\\"};duplicate=1\",\"expected\":\"Sets up the immutable registry reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the TokenAdminRegistry contract\\\"};duplicate=1\",\"expected\":\"The address of the TokenAdminRegistry contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=1\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract to register admin for\\\"};duplicate=2\",\"expected\":\"The token contract to register admin for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using AccessControl:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using AccessControl:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using getCCIPAdmin:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using getCCIPAdmin:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates and registers an administrator using owner pattern:\\\"};duplicate=1\",\"expected\":\"Validates and registers an administrator using owner pattern:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates caller is the admin (reverts with\\\"};duplicate=1\",\"expected\":\"Validates caller is the admin (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates the tokenAdminRegistry address is not zero (reverts with\\\"};duplicate=1\",\"expected\":\"Validates the tokenAdminRegistry address is not zero (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\\\"};duplicate=1\",\"expected\":\"Verifies caller has DEFAULT_ADMIN_ROLE (reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"admin\\\"};duplicate=1\",\"expected\":\"admin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=1\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event on success\\\"};duplicate=2\",\"expected\":\"event on success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAdminRegistry\\\"};duplicate=1\",\"expected\":\"tokenAdminRegistry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/registry-module-owner-custom\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error AlreadyRegistered(address token);\\\"};duplicate=1\",\"expected\":\"error AlreadyRegistered(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidTokenPoolToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidTokenPoolToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyPendingAdministrator(address sender, address token);\\\"};duplicate=1\",\"expected\":\"error OnlyPendingAdministrator(address sender, address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OnlyRegistryModuleOrOwner(address sender);\\\"};duplicate=1\",\"expected\":\"error OnlyRegistryModuleOrOwner(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddress();\\\"};duplicate=1\",\"expected\":\"error ZeroAddress();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\\\"};duplicate=1\",\"expected\":\"event PoolSet(address indexed token, address indexed previousPool, address indexed newPool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleAdded(address module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleAdded(address module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event RegistryModuleRemoved(address indexed module);\\\"};duplicate=1\",\"expected\":\"event RegistryModuleRemoved(address indexed module);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\\\"};duplicate=1\",\"expected\":\"struct TokenConfig { address administrator; address pendingAdministrator; address tokenPool; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AddressZero\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AddressZero\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AlreadyRegistered\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AlreadyRegistered\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidTokenPoolToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidTokenPoolToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyPendingAdministrator\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyPendingAdministrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnlyRegistryModuleOrOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OnlyRegistryModuleOrOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolSet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolSet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegistryModuleRemoved\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RegistryModuleRemoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TokenConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"TokenConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"acceptAdminRole\\\",\\\"url\\\":\\\"#acceptadminrole\\\"};duplicate=1\",\"expected\":\"acceptAdminRole -> #acceptadminrole\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"setPool\\\",\\\"url\\\":\\\"#setpool\\\"};duplicate=1\",\"expected\":\"setPool -> #setpool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data structure for each token.\\\"};duplicate=1\",\"expected\":\"Configuration data structure for each token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contract identifier that specifies the implementation version.\\\"};duplicate=1\",\"expected\":\"Contract identifier that specifies the implementation version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new registry module is authorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a new registry module is authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a registry module is deauthorized.\\\"};duplicate=1\",\"expected\":\"Emitted when a registry module is deauthorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a token's pool configuration is changed via\\\"};duplicate=1\",\"expected\":\"Emitted when a token's pool configuration is changed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an administrator transfer is completed via\\\"};duplicate=1\",\"expected\":\"Emitted when an administrator transfer is completed via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=1\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=2\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=3\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Indexed\\\"};duplicate=4\",\"expected\":\"Indexed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of all configured tokens for efficient enumeration.\\\"};duplicate=1\",\"expected\":\"Set of all configured tokens for efficient enumeration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized registry modules that can register administrators.\\\"};duplicate=1\",\"expected\":\"Set of authorized registry modules that can register administrators.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores configuration data for each token, including administrators and pool addresses.\\\"};duplicate=1\",\"expected\":\"Stores configuration data for each token, including administrators and pool addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the newly authorized module\\\"};duplicate=1\",\"expected\":\"The address of the newly authorized module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the removed module\\\"};duplicate=1\",\"expected\":\"The address of the removed module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new administrator address\\\"};duplicate=1\",\"expected\":\"The new administrator address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new pool address\\\"};duplicate=1\",\"expected\":\"The new pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The previous pool address\\\"};duplicate=1\",\"expected\":\"The previous pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=1\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being accessed\\\"};duplicate=2\",\"expected\":\"The token address being accessed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address being configured\\\"};duplicate=1\",\"expected\":\"The token address being configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that already has an administrator\\\"};duplicate=1\",\"expected\":\"The token address that already has an administrator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address that is not supported by the pool\\\"};duplicate=1\",\"expected\":\"The token address that is not supported by the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract whose admin role has been transferred\\\"};duplicate=1\",\"expected\":\"The token contract whose admin role has been transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=1\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=2\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unauthorized caller's address\\\"};duplicate=3\",\"expected\":\"The unauthorized caller's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to registry modules or owner is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to registry modules or owner is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a function restricted to the token administrator is called by another address.\\\"};duplicate=1\",\"expected\":\"Thrown when a function restricted to the token administrator is called by another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\\\"};duplicate=1\",\"expected\":\"Thrown when acceptAdminRole is called by an address other than the pending administrator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to register an administrator for a token that already has one.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to register an administrator for a token that already has one.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to set a pool that doesn't support the token.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to set a pool that doesn't support the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) where not allowed.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) where not allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=6\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=11\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=12\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=13\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=14\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=1\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"module\\\"};duplicate=2\",\"expected\":\"module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newAdmin\\\"};duplicate=1\",\"expected\":\"newAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newPool\\\"};duplicate=1\",\"expected\":\"newPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"previousPool\\\"};duplicate=1\",\"expected\":\"previousPool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=2\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=3\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=4\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=5\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=6\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-admin-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.AddressSet internal s_allowlist;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.AddressSet internal s_allowlist;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EnumerableSet.UintSet internal s_remoteChainSelectors;\\\"};duplicate=1\",\"expected\":\"EnumerableSet.UintSet internal s_remoteChainSelectors;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IERC20 internal immutable i_token;\\\"};duplicate=1\",\"expected\":\"IERC20 internal immutable i_token;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"IRouter internal s_router;\\\"};duplicate=1\",\"expected\":\"IRouter internal s_router;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal immutable i_rmnProxy;\\\"};duplicate=1\",\"expected\":\"address internal immutable i_rmnProxy;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address internal s_rateLimitAdmin;\\\"};duplicate=1\",\"expected\":\"address internal s_rateLimitAdmin;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"bool internal immutable i_allowlistEnabled;\\\"};duplicate=1\",\"expected\":\"bool internal immutable i_allowlistEnabled;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\\\"};duplicate=1\",\"expected\":\"constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CallerIsNotARampOnRouter(address caller);\\\"};duplicate=1\",\"expected\":\"error CallerIsNotARampOnRouter(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainAlreadyExists(uint64 chainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainAlreadyExists(uint64 chainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ChainNotAllowed(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error ChainNotAllowed(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CursedByRMN();\\\"};duplicate=1\",\"expected\":\"error CursedByRMN();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\\\"};duplicate=1\",\"expected\":\"error InvalidDecimalArgs(uint8 expected, uint8 actual);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\\\"};duplicate=1\",\"expected\":\"error InvalidRemoteChainDecimals(bytes sourcePoolData);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\\\"};duplicate=1\",\"expected\":\"error InvalidSourcePoolAddress(bytes sourcePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error InvalidToken(address token);\\\"};duplicate=1\",\"expected\":\"error InvalidToken(address token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error MismatchedArrayLengths();\\\"};duplicate=1\",\"expected\":\"error MismatchedArrayLengths();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error NonExistentChain(uint64 remoteChainSelector);\\\"};duplicate=1\",\"expected\":\"error NonExistentChain(uint64 remoteChainSelector);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\\\"};duplicate=1\",\"expected\":\"error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\\\"};duplicate=1\",\"expected\":\"error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error SenderNotAllowed(address sender);\\\"};duplicate=1\",\"expected\":\"error SenderNotAllowed(address sender);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error Unauthorized(address caller);\\\"};duplicate=1\",\"expected\":\"error Unauthorized(address caller);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error ZeroAddressNotAllowed();\\\"};duplicate=1\",\"expected\":\"error ZeroAddressNotAllowed();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\\\"};duplicate=1\",\"expected\":\"function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\\\"};duplicate=1\",\"expected\":\"function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _checkAllowList(address sender) internal view;\\\"};duplicate=1\",\"expected\":\"function _checkAllowList(address sender) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\\\"};duplicate=1\",\"expected\":\"function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function _encodeLocalDecimals() internal view virtual returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _lockOrBurn(uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _lockOrBurn(uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOffRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\\\"};duplicate=1\",\"expected\":\"function _onlyOnRamp(uint64 remoteChainSelector) internal view;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\\\"};duplicate=1\",\"expected\":\"function _parseRemoteDecimals(bytes memory sourcePoolData) internal view virtual returns (uint8);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _releaseOrMint(address receiver, uint256 amount) internal virtual;\\\"};duplicate=1\",\"expected\":\"function _releaseOrMint(address receiver, uint256 amount) internal virtual;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\\\"};duplicate=1\",\"expected\":\"function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\\\"};duplicate=1\",\"expected\":\"function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateLockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\\\"};duplicate=1\",\"expected\":\"function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn) internal;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\\\"};duplicate=1\",\"expected\":\"function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowList() external view returns (address[] memory);\\\"};duplicate=1\",\"expected\":\"function getAllowList() external view returns (address[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getAllowListEnabled() external view returns (bool);\\\"};duplicate=1\",\"expected\":\"function getAllowListEnabled() external view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\\\"};duplicate=1\",\"expected\":\"function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRateLimitAdmin() external view returns (address);\\\"};duplicate=1\",\"expected\":\"function getRateLimitAdmin() external view returns (address);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\\\"};duplicate=1\",\"expected\":\"function getRemotePools(uint64 remoteChainSelector) public view returns (bytes[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\\\"};duplicate=1\",\"expected\":\"function getRemoteToken(uint64 remoteChainSelector) public view returns (bytes memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRmnProxy() public view returns (address rmnProxy);\\\"};duplicate=1\",\"expected\":\"function getRmnProxy() public view returns (address rmnProxy);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRouter() public view returns (address router);\\\"};duplicate=1\",\"expected\":\"function getRouter() public view returns (address router);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getSupportedChains() public view returns (uint64[] memory);\\\"};duplicate=1\",\"expected\":\"function getSupportedChains() public view returns (uint64[] memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getToken() public view returns (IERC20 token);\\\"};duplicate=1\",\"expected\":\"function getToken() public view returns (IERC20 token);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getTokenDecimals() public view virtual returns (uint8 decimals);\\\"};duplicate=1\",\"expected\":\"function getTokenDecimals() public view virtual returns (uint8 decimals);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedChain(uint64 remoteChainSelector) public view returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isSupportedToken(address token) public view virtual returns (bool);\\\"};duplicate=1\",\"expected\":\"function isSupportedToken(address token) public view virtual returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\\\"};duplicate=1\",\"expected\":\"function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\\\"};duplicate=1\",\"expected\":\"function setChainRateLimiterConfigs( uint64[] calldata remoteChainSelectors, RateLimiter.Config[] calldata outboundConfigs, RateLimiter.Config[] calldata inboundConfigs ) external;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRateLimitAdmin(address rateLimitAdmin) external onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setRouter(address newRouter) public onlyOwner;\\\"};duplicate=1\",\"expected\":\"function setRouter(address newRouter) public onlyOwner;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\\\"};duplicate=1\",\"expected\":\"function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\\\"};duplicate=1\",\"expected\":\"mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\\\"};duplicate=1\",\"expected\":\"struct ChainUpdate { uint64 remoteChainSelector; bytes[] remotePoolAddresses; bytes remoteTokenAddress; RateLimiter.Config outboundRateLimiterConfig; RateLimiter.Config inboundRateLimiterConfig; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\\\"};duplicate=1\",\"expected\":\"struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; RateLimiter.TokenBucket inboundRateLimiterConfig; bytes remoteTokenAddress; EnumerableSet.Bytes32Set remotePools; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint8 internal immutable i_tokenDecimals;\\\"};duplicate=1\",\"expected\":\"uint8 internal immutable i_tokenDecimals;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainAlreadyExists\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainAlreadyExists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ChainUpdate\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ChainUpdate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CursedByRMN\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CursedByRMN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidDecimalArgs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidDecimalArgs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidSourcePoolAddress\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidSourcePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"InvalidToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"InvalidToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"MismatchedArrayLengths\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"MismatchedArrayLengths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"NonExistentChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OverflowDetected\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"OverflowDetected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"PoolAlreadyAdded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Rate Limiting\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Rate Limiting\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RemoteChainConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"RemoteChainConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"SenderNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"State Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"State Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Structs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Structs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Unauthorized\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Unauthorized\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_calculateLocalAmount\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_calculateLocalAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_checkAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_checkAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeInboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeInboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_consumeOutboundRateLimit\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_consumeOutboundRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_encodeLocalDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_encodeLocalDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOffRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOffRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_onlyOnRamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_onlyOnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_parseRemoteDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_parseRemoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRateLimitConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRateLimitConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_setRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_setRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateLockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"_validateReleaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"_validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"addRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"addRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyAllowListUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyAllowListUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"applyChainUpdates\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"applyChainUpdates\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowListEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowListEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getAllowList\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getAllowList\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentInboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentInboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getCurrentOutboundRateLimiterState\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getCurrentOutboundRateLimiterState\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemotePools\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemotePools\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRemoteToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRemoteToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getSupportedChains\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getSupportedChains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_allowlistEnabled\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_allowlistEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_rmnProxy\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_tokenDecimals\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_tokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_token\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedChain\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isSupportedToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isSupportedToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"lockOrBurn\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"lockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"releaseOrMint\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"releaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"removeRemotePool\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"removeRemotePool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_allowlist\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_rateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_rateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remoteChainSelectors\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_remotePoolAddresses\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_remotePoolAddresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_router\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfig\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setChainRateLimiterConfigs\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setChainRateLimiterConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRateLimitAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRateLimitAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportsInterface\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportsInterface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=1\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CallerIsNotARampOnRouter\\\",\\\"url\\\":\\\"#callerisnotaramponrouter\\\"};duplicate=2\",\"expected\":\"CallerIsNotARampOnRouter -> #callerisnotaramponrouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainConfigured\\\",\\\"url\\\":\\\"#chainconfigured\\\"};duplicate=1\",\"expected\":\"ChainConfigured -> #chainconfigured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=1\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ChainNotAllowed\\\",\\\"url\\\":\\\"#chainnotallowed\\\"};duplicate=2\",\"expected\":\"ChainNotAllowed -> #chainnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemoteChainDecimals\\\",\\\"url\\\":\\\"#invalidremotechaindecimals\\\"};duplicate=1\",\"expected\":\"InvalidRemoteChainDecimals -> #invalidremotechaindecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"InvalidRemotePoolForChain\\\",\\\"url\\\":\\\"#invalidremotepoolforchain\\\"};duplicate=1\",\"expected\":\"InvalidRemotePoolForChain -> #invalidremotepoolforchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LockedOrBurned\\\",\\\"url\\\":\\\"#lockedorburned\\\"};duplicate=1\",\"expected\":\"LockedOrBurned -> #lockedorburned\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NonExistentChain\\\",\\\"url\\\":\\\"#nonexistentchain\\\"};duplicate=1\",\"expected\":\"NonExistentChain -> #nonexistentchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/pool#lockorburninv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnInV1 -> /ccip/api-reference/evm/v1.6.3/pool#lockorburninv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.LockOrBurnOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/pool#lockorburnoutv1\\\"};duplicate=1\",\"expected\":\"Pool.LockOrBurnOutV1 -> /ccip/api-reference/evm/v1.6.3/pool#lockorburnoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintInV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/pool#releaseormintinv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintInV1 -> /ccip/api-reference/evm/v1.6.3/pool#releaseormintinv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Pool.ReleaseOrMintOutV1\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/pool#releaseormintoutv1\\\"};duplicate=1\",\"expected\":\"Pool.ReleaseOrMintOutV1 -> /ccip/api-reference/evm/v1.6.3/pool#releaseormintoutv1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"PoolAlreadyAdded\\\",\\\"url\\\":\\\"#poolalreadyadded\\\"};duplicate=1\",\"expected\":\"PoolAlreadyAdded -> #poolalreadyadded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.3/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config[]\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config[] -> /ccip/api-reference/evm/v1.6.3/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/rate-limiter#config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.3/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.Config\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/rate-limiter#config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config -> /ccip/api-reference/evm/v1.6.3/rate-limiter#config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/rate-limiter#tokenbucket\\\"};duplicate=1\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.3/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RateLimiter.TokenBucket\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.3/rate-limiter#tokenbucket\\\"};duplicate=2\",\"expected\":\"RateLimiter.TokenBucket -> /ccip/api-reference/evm/v1.6.3/rate-limiter#tokenbucket\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ReleasedOrMinted\\\",\\\"url\\\":\\\"#releasedorminted\\\"};duplicate=1\",\"expected\":\"ReleasedOrMinted -> #releasedorminted\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolAdded\\\",\\\"url\\\":\\\"#remotepooladded\\\"};duplicate=1\",\"expected\":\"RemotePoolAdded -> #remotepooladded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RemotePoolRemoved\\\",\\\"url\\\":\\\"#remotepoolremoved\\\"};duplicate=1\",\"expected\":\"RemotePoolRemoved -> #remotepoolremoved\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RouterUpdated\\\",\\\"url\\\":\\\"#routerupdated\\\"};duplicate=1\",\"expected\":\"RouterUpdated -> #routerupdated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SenderNotAllowed\\\",\\\"url\\\":\\\"#sendernotallowed\\\"};duplicate=1\",\"expected\":\"SenderNotAllowed -> #sendernotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ZeroAddressNotAllowed\\\",\\\"url\\\":\\\"#zeroaddressnotallowed\\\"};duplicate=1\",\"expected\":\"ZeroAddressNotAllowed -> #zeroaddressnotallowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=1\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=2\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\"};duplicate=3\",\"expected\":\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI-encoded decimal places of the local token\\\"};duplicate=1\",\"expected\":\"ABI-encoded decimal places of the local token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Abstract internal function designed to be overridden with the specific token lock or burn logic.\\\"};duplicate=1\",\"expected\":\"Abstract internal function designed to be overridden with the specific token lock or burn logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Abstract internal function designed to be overridden with the specific token release or mint logic.\\\"};duplicate=1\",\"expected\":\"Abstract internal function designed to be overridden with the specific token release or mint logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adding new chains with rate limits\\\"};duplicate=1\",\"expected\":\"Adding new chains with rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new pool address for a remote chain.\\\"};duplicate=1\",\"expected\":\"Adds a new pool address for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListAdd for each successfully added address\\\"};duplicate=1\",\"expected\":\"AllowListAdd for each successfully added address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AllowListRemove for each successfully removed address\\\"};duplicate=1\",\"expected\":\"AllowListRemove for each successfully removed address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlist is enabled\\\"};duplicate=1\",\"expected\":\"Allowlist is enabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows multiple pools per chain for upgrades\\\"};duplicate=1\",\"expected\":\"Allows multiple pools per chain for upgrades\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows:\\\"};duplicate=1\",\"expected\":\"Allows:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apply updates to the allow list.\\\"};duplicate=1\",\"expected\":\"Apply updates to the allow list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to add to the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to add to the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of addresses to remove from the allowlist\\\"};duplicate=1\",\"expected\":\"Array of addresses to remove from the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of configured chain selectors\\\"};duplicate=1\",\"expected\":\"Array of configured chain selectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of encoded pool addresses on remote chain\\\"};duplicate=1\",\"expected\":\"Array of encoded pool addresses on remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP_POOL_V1\\\"};duplicate=1\",\"expected\":\"CCIP_POOL_V1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates correct local token amounts using decimal adjustments\\\"};duplicate=1\",\"expected\":\"Calculates correct local token amounts using decimal adjustments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculates the local amount based on the remote amount and decimals.\\\"};duplicate=1\",\"expected\":\"Calculates the local amount based on the remote amount and decimals.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Callable by owner or rate limit admin. All array lengths must match.\\\"};duplicate=1\",\"expected\":\"Callable by owner or rate limit admin. All array lengths must match.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized offRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is authorized onRamp\\\"};duplicate=1\",\"expected\":\"Caller is authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is registered as an offRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is registered as an offRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Caller is the designated onRamp in the Router contract\\\"};duplicate=1\",\"expected\":\"Caller is the designated onRamp in the Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=1\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain is active and allowed for transfers\\\"};duplicate=2\",\"expected\":\"Chain is active and allowed for transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=1\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain selector is configured in the pool\\\"};duplicate=2\",\"expected\":\"Chain selector is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a chain is configured in the pool.\\\"};duplicate=1\",\"expected\":\"Checks if a chain is configured in the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a given token is supported by this pool.\\\"};duplicate=1\",\"expected\":\"Checks if a given token is supported by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned offRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\\\"};duplicate=1\",\"expected\":\"Checks whether remote chain selector is configured on this contract, and if the msg.sender is a permissioned onRamp for the given chain on the Router.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Concrete child contracts (e.g., LockReleaseTokenPool, BurnMintTokenPool) must provide a specific implementation (either locking or burning tokens).\\\"};duplicate=1\",\"expected\":\"Concrete child contracts (e.g., LockReleaseTokenPool, BurnMintTokenPool) must provide a specific implementation (either locking or burning tokens).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Concrete child contracts must implement the logic to either release (transfer) existing tokens or mint new ones to the receiver.\\\"};duplicate=1\",\"expected\":\"Concrete child contracts must implement the logic to either release (transfer) existing tokens or mint new ones to the receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration data for adding or updating a chain.\\\"};duplicate=1\",\"expected\":\"Configuration data for adding or updating a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration for each remote chain, including rate limits and token details.\\\"};duplicate=1\",\"expected\":\"Configuration for each remote chain, including rate limits and token details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains destination token address and pool data\\\"};duplicate=1\",\"expected\":\"Contains destination token address and pool data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains the final amount released in local tokens\\\"};duplicate=1\",\"expected\":\"Contains the final amount released in local tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=1\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical security check that validates:\\\"};duplicate=2\",\"expected\":\"Critical security check that validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the inbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the inbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current state of the outbound rate limiter\\\"};duplicate=1\",\"expected\":\"Current state of the outbound rate limiter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data length is not 32 bytes (invalid ABI encoding)\\\"};duplicate=1\",\"expected\":\"Data length is not 32 bytes (invalid ABI encoding)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decoded value exceeds uint8 range\\\"};duplicate=1\",\"expected\":\"Decoded value exceeds uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=24\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=25\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=26\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=27\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=28\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=29\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=30\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=31\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=32\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=33\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=34\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=35\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=36\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=37\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=38\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=39\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=40\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=41\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=42\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=43\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=44\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=45\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=46\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=47\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=48\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=49\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=50\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=51\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a\\\"};duplicate=1\",\"expected\":\"Emits a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a\\\"};duplicate=2\",\"expected\":\"Emits a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits:\\\"};duplicate=1\",\"expected\":\"Emits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=1\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=2\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits\\\"};duplicate=3\",\"expected\":\"Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensure no inflight transactions exist before removal to prevent loss of funds.\\\"};duplicate=1\",\"expected\":\"Ensure no inflight transactions exist before removal to prevent loss of funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expects the data to be ABI-encoded uint256 that fits in uint8\\\"};duplicate=1\",\"expected\":\"Expects the data to be ABI-encoded uint256 that fits in uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\\\"};duplicate=1\",\"expected\":\"Falls back to local token decimals if source pool data is empty (for backward compatibility)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=1\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fields:\\\"};duplicate=2\",\"expected\":\"Fields:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Flag indicating if the pool uses access control.\\\"};duplicate=1\",\"expected\":\"Flag indicating if the pool uses access control.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the allowed addresses.\\\"};duplicate=1\",\"expected\":\"Gets the allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC165\\\"};duplicate=1\",\"expected\":\"IERC165\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=1\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IERC20\\\"};duplicate=2\",\"expected\":\"IERC20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IPoolV1\\\"};duplicate=1\",\"expected\":\"IPoolV1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\\\"};duplicate=1\",\"expected\":\"If allowlist is disabled (i_allowlistEnabled = false), returns without checks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If allowlist is enabled, verifies sender is in s_allowlist\\\"};duplicate=1\",\"expected\":\"If allowlist is enabled, verifies sender is in s_allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implements ERC165 interface detection.\\\"};duplicate=1\",\"expected\":\"Implements ERC165 interface detection.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initial set of authorized addresses (if any)\\\"};duplicate=1\",\"expected\":\"Initial set of authorized addresses (if any)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes allowlist if provided\\\"};duplicate=1\",\"expected\":\"Initializes allowlist if provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the lock operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the lock operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Input parameters for the release operation\\\"};duplicate=1\",\"expected\":\"Input parameters for the release operation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal configuration for a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal configuration for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\\\"};duplicate=1\",\"expected\":\"Internal function to add a pool address to the allowed remote token pools for a chain. Called during chain configuration and when adding individual remote pools.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for incoming transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for incoming transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to consume rate limiting capacity for outgoing transfers.\\\"};duplicate=1\",\"expected\":\"Internal function to consume rate limiting capacity for outgoing transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to decode the decimal configuration received from a remote chain.\\\"};duplicate=1\",\"expected\":\"Internal function to decode the decimal configuration received from a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to encode the local token's decimals for cross-chain communication.\\\"};duplicate=1\",\"expected\":\"Internal function to encode the local token's decimals for cross-chain communication.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to update rate limit configuration for a chain.\\\"};duplicate=1\",\"expected\":\"Internal function to update rate limit configuration for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate lock or burn operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate lock or burn operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to validate release or mint operations.\\\"};duplicate=1\",\"expected\":\"Internal function to validate release or mint operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal function to verify if a sender is authorized when allowlist is enabled.\\\"};duplicate=1\",\"expected\":\"Internal function to verify if a sender is authorized when allowlist is enabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\\\"};duplicate=1\",\"expected\":\"Internal version of applyAllowListUpdates to allow for reuse in the constructor.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It is called by the public lockOrBurn function after all validations are complete.\\\"};duplicate=1\",\"expected\":\"It is called by the public lockOrBurn function after all validations are complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It is called by the public releaseOrMint function after validation and amount calculations.\\\"};duplicate=1\",\"expected\":\"It is called by the public releaseOrMint function after validation and amount calculations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Locks tokens in the pool for cross-chain transfer.\\\"};duplicate=1\",\"expected\":\"Locks tokens in the pool for cross-chain transfer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maps hashed pool addresses to their original form for verification.\\\"};duplicate=1\",\"expected\":\"Maps hashed pool addresses to their original form for verification.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=18\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=19\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=20\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=21\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=22\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=23\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=24\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=25\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=26\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=27\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=28\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=29\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=30\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=31\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=32\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=33\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=34\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=35\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=36\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=37\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=1\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=10\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=11\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=12\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=13\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=14\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=15\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=16\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=17\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=18\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=19\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=2\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=20\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=21\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=22\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=23\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=24\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=25\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=26\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=27\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=28\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=29\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=3\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=30\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=31\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=32\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=33\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=34\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=4\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=5\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=6\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=7\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=8\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name\\\"};duplicate=9\",\"expected\":\"Name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\\\"};duplicate=1\",\"expected\":\"Only active when i_allowlistEnabled is true. Used to restrict token movements to authorized addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\\\"};duplicate=1\",\"expected\":\"Only callable by owner. The rate limit admin can modify rate limit configurations independently.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by owner\\\"};duplicate=1\",\"expected\":\"Only callable by owner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Only callable by the contract owner. Emits\\\"};duplicate=1\",\"expected\":\"Only callable by the contract owner. Emits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=10\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=11\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=12\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=13\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=14\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=15\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=16\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=17\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=18\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=19\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=20\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=21\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=22\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=23\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=24\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=25\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=26\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=27\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=28\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=29\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=30\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=31\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=6\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=7\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=8\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters\\\"};duplicate=9\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs access control validation based on the i_allowlistEnabled flag:\\\"};duplicate=1\",\"expected\":\"Performs access control validation based on the i_allowlistEnabled flag:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateLockOrBurn\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateLockOrBurn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs essential security checks through _validateReleaseOrMint\\\"};duplicate=1\",\"expected\":\"Performs essential security checks through _validateReleaseOrMint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Performs initial setup:\\\"};duplicate=1\",\"expected\":\"Performs initial setup:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Previous pools remain valid for inflight messages\\\"};duplicate=1\",\"expected\":\"Previous pools remain valid for inflight messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token locking with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token locking with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes token release with security validation:\\\"};duplicate=1\",\"expected\":\"Processes token release with security validation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=1\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN status is safe\\\"};duplicate=2\",\"expected\":\"RMN status is safe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for incoming transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for incoming transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limit configuration for outgoing transfers\\\"};duplicate=1\",\"expected\":\"Rate limit configuration for outgoing transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=1\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limiting is enabled and limits are exceeded\\\"};duplicate=2\",\"expected\":\"Rate limiting is enabled and limits are exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=1\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate limits are not exceeded\\\"};duplicate=2\",\"expected\":\"Rate limits are not exceeded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=1\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RateLimiter.Config\\\"};duplicate=2\",\"expected\":\"RateLimiter.Config\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=1\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reduces available capacity by the consumed amount\\\"};duplicate=2\",\"expected\":\"Reduces available capacity by the consumed amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Releases tokens from the pool to a recipient.\\\"};duplicate=1\",\"expected\":\"Releases tokens from the pool to a recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a pool address from a remote chain's configuration.\\\"};duplicate=1\",\"expected\":\"Removes a pool address from a remote chain's configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removing existing chains\\\"};duplicate=1\",\"expected\":\"Removing existing chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=1\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested amount exceeds current capacity\\\"};duplicate=2\",\"expected\":\"Requested amount exceeds current capacity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns all configured chain selectors.\\\"};duplicate=1\",\"expected\":\"Returns all configured chain selectors.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns destination token information\\\"};duplicate=1\",\"expected\":\"Returns destination token information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded address to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded address to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns encoded addresses to support both EVM and non-EVM chains.\\\"};duplicate=1\",\"expected\":\"Returns encoded addresses to support both EVM and non-EVM chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the Risk Management Network proxy address.\\\"};duplicate=1\",\"expected\":\"Returns the Risk Management Network proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the configured pool addresses for a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the configured pool addresses for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current rate limit administrator address.\\\"};duplicate=1\",\"expected\":\"Returns the current rate limit administrator address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current router address.\\\"};duplicate=1\",\"expected\":\"Returns the current router address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of inbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of inbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the current state of outbound rate limiting for a chain.\\\"};duplicate=1\",\"expected\":\"Returns the current state of outbound rate limiting for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"Returns the number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token address on a remote chain.\\\"};duplicate=1\",\"expected\":\"Returns the token address on a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the token managed by this pool.\\\"};duplicate=1\",\"expected\":\"Returns the token managed by this pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns whether allowlist functionality is active.\\\"};duplicate=1\",\"expected\":\"Returns whether allowlist functionality is active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=10\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=11\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=12\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=13\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=14\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=15\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=16\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=17\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=18\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=19\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=20\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=5\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=6\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=7\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=8\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns\\\"};duplicate=9\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=1\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if:\\\"};duplicate=2\",\"expected\":\"Reverts if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=1\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=2\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=3\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with:\\\"};duplicate=4\",\"expected\":\"Reverts with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=1\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts with\\\"};duplicate=2\",\"expected\":\"Reverts with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is allowlisted (if enabled)\\\"};duplicate=1\",\"expected\":\"Sender is allowlisted (if enabled)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender is not in the allowlist\\\"};duplicate=1\",\"expected\":\"Sender is not in the allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of addresses authorized to initiate cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of addresses authorized to initiate cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set of authorized chain selectors for cross-chain operations.\\\"};duplicate=1\",\"expected\":\"Set of authorized chain selectors for cross-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"Sets the address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the chain rate limiter config.\\\"};duplicate=1\",\"expected\":\"Sets the chain rate limiter config.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets up immutable contract references\\\"};duplicate=1\",\"expected\":\"Sets up immutable contract references\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Source pool is valid\\\"};duplicate=1\",\"expected\":\"Source pool is valid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supports the following interfaces:\\\"};duplicate=1\",\"expected\":\"Supports the following interfaces:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address.\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP Router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP Router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP router contract address\\\"};duplicate=1\",\"expected\":\"The CCIP router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The RMN proxy contract address\\\"};duplicate=1\",\"expected\":\"The RMN proxy contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network (RMN) proxy address.\\\"};duplicate=1\",\"expected\":\"The Risk Management Network (RMN) proxy address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Risk Management Network proxy address\\\"};duplicate=1\",\"expected\":\"The Risk Management Network proxy address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual number of decimals provided\\\"};duplicate=1\",\"expected\":\"The actual number of decimals provided\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address authorized to manage rate limits.\\\"};duplicate=1\",\"expected\":\"The address authorized to manage rate limits.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the already existing pool\\\"};duplicate=1\",\"expected\":\"The address of the already existing pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the invalid token\\\"};duplicate=1\",\"expected\":\"The address of the invalid token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the pool to remove\\\"};duplicate=1\",\"expected\":\"The address of the pool to remove\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the remote pool (encoded to support non-EVM chains)\\\"};duplicate=1\",\"expected\":\"The address of the remote pool (encoded to support non-EVM chains)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address receiving the tokens\\\"};duplicate=1\",\"expected\":\"The address receiving the tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address that attempted the action\\\"};duplicate=1\",\"expected\":\"The address that attempted the action\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to check for permission\\\"};duplicate=1\",\"expected\":\"The address to check for permission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be added.\\\"};duplicate=1\",\"expected\":\"The addresses to be added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The addresses to be removed.\\\"};duplicate=1\",\"expected\":\"The addresses to be removed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The allowed addresses.\\\"};duplicate=1\",\"expected\":\"The allowed addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=1\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens being transferred\\\"};duplicate=2\",\"expected\":\"The amount of tokens being transferred\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens to lock or burn\\\"};duplicate=1\",\"expected\":\"The amount of tokens to lock or burn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of tokens to release or mint\\\"};duplicate=1\",\"expected\":\"The amount of tokens to release or mint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount on the remote chain.\\\"};duplicate=1\",\"expected\":\"The amount on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount that caused the overflow\\\"};duplicate=1\",\"expected\":\"The amount that caused the overflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector being queried\\\"};duplicate=1\",\"expected\":\"The chain selector being queried\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the destination chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the destination chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector for the source chain\\\"};duplicate=1\",\"expected\":\"The chain selector for the source chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to add the pool for\\\"};duplicate=1\",\"expected\":\"The chain selector to add the pool for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to configure\\\"};duplicate=1\",\"expected\":\"The chain selector to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=1\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to get rate limiter state for\\\"};duplicate=2\",\"expected\":\"The chain selector to get rate limiter state for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to remove the pool from\\\"};duplicate=1\",\"expected\":\"The chain selector to remove the pool from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=1\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector to validate authorization for\\\"};duplicate=2\",\"expected\":\"The chain selector to validate authorization for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector where the pool exists\\\"};duplicate=1\",\"expected\":\"The chain selector where the pool exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selectors to configure\\\"};duplicate=1\",\"expected\":\"The chain selectors to configure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals of the token on the remote chain.\\\"};duplicate=1\",\"expected\":\"The decimals of the token on the remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the local chain\\\"};duplicate=1\",\"expected\":\"The decimals on the local chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decimals on the remote chain\\\"};duplicate=1\",\"expected\":\"The decimals on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded decimal configuration data\\\"};duplicate=1\",\"expected\":\"The encoded decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encoded token address on the remote chain\\\"};duplicate=1\",\"expected\":\"The encoded token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The expected number of decimals\\\"};duplicate=1\",\"expected\":\"The expected number of decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The interface identifier to check\\\"};duplicate=1\",\"expected\":\"The interface identifier to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid decimal configuration data\\\"};duplicate=1\",\"expected\":\"The invalid decimal configuration data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The invalid pool address\\\"};duplicate=1\",\"expected\":\"The invalid pool address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The local amount.\\\"};duplicate=1\",\"expected\":\"The local amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new inbound rate limiter configs, meaning the offRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\\\"};duplicate=1\",\"expected\":\"The new outbound rate limiter configs, meaning the onRamp rate limits for the given chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The new router contract address\\\"};duplicate=1\",\"expected\":\"The new router contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimal places for the token\\\"};duplicate=1\",\"expected\":\"The number of decimal places for the token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals for the managed token.\\\"};duplicate=1\",\"expected\":\"The number of decimals for the managed token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used on the remote chain\\\"};duplicate=1\",\"expected\":\"The number of decimals used on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\\\"};duplicate=1\",\"expected\":\"The pool address is stored both as a hash for efficient lookups and in its original form for retrieval.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pool address to verify\\\"};duplicate=1\",\"expected\":\"The pool address to verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=1\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=2\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain identifier\\\"};duplicate=3\",\"expected\":\"The remote chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The remote chain selector for which the rate limits apply.\\\"};duplicate=1\",\"expected\":\"The remote chain selector for which the rate limits apply.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The selector of the chain that already exists\\\"};duplicate=1\",\"expected\":\"The selector of the chain that already exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token address to check\\\"};duplicate=1\",\"expected\":\"The token address to check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token contract address\\\"};duplicate=1\",\"expected\":\"The token contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token managed by this pool. Currently supports one token per pool.\\\"};duplicate=1\",\"expected\":\"The token managed by this pool. Currently supports one token per pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token to be managed by this pool\\\"};duplicate=1\",\"expected\":\"The token to be managed by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token's decimal places on this chain\\\"};duplicate=1\",\"expected\":\"The token's decimal places on this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function is a virtual placeholder within the main lockOrBurn workflow:\\\"};duplicate=1\",\"expected\":\"This function is a virtual placeholder within the main lockOrBurn workflow:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function is a virtual placeholder within the main releaseOrMint workflow:\\\"};duplicate=1\",\"expected\":\"This function is a virtual placeholder within the main releaseOrMint workflow:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\\\"};duplicate=1\",\"expected\":\"This function protects against overflows. If there is a transaction that hits the overflow check, it is probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been wrongly configured, the token developer could redeploy the pool with the correct decimals and manually re-execute the CCIP tx to fix the issue.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a caller lacks the required permissions for an operation.\\\"};duplicate=1\",\"expected\":\"Thrown when a caller lacks the required permissions for an operation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\\\"};duplicate=1\",\"expected\":\"Thrown when a non-allowlisted address attempts an operation in allowlist mode.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when a token amount conversion would result in an arithmetic overflow.\\\"};duplicate=1\",\"expected\":\"Thrown when a token amount conversion would result in an arithmetic overflow.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\\\"};duplicate=1\",\"expected\":\"Thrown when an unauthorized address attempts to act as an onRamp or offRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when array parameters have different lengths in multi-chain operations.\\\"};duplicate=1\",\"expected\":\"Thrown when array parameters have different lengths in multi-chain operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a chain that is already configured.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a chain that is already configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to add a pool that is already configured for a chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to add a pool that is already configured for a chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to modify the allowlist when the feature is disabled.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to modify the allowlist when the feature is disabled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with a token that is not supported by the pool.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with a token that is not supported by the pool.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to operate with an unconfigured chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to operate with an unconfigured chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to remove a pool that isn't configured for the specified chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use a chain that is not authorized.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use a chain that is not authorized.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use address(0) for critical contract addresses.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use address(0) for critical contract addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when attempting to use an unconfigured or invalid remote pool address.\\\"};duplicate=1\",\"expected\":\"Thrown when attempting to use an unconfigured or invalid remote pool address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the Risk Management Network has flagged operations as unsafe.\\\"};duplicate=1\",\"expected\":\"Thrown when the Risk Management Network has flagged operations as unsafe.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\\\"};duplicate=1\",\"expected\":\"Thrown when the decimal configuration from a remote chain is invalid or malformed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Thrown when token decimals don't match the expected configuration.\\\"};duplicate=1\",\"expected\":\"Thrown when token decimals don't match the expected configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=1\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token is supported\\\"};duplicate=2\",\"expected\":\"Token is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens to the specified receiver\\\"};duplicate=1\",\"expected\":\"Transfers tokens to the specified receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the chain is configured in the pool\\\"};duplicate=1\",\"expected\":\"True if the chain is configured in the pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the contract implements the interface\\\"};duplicate=1\",\"expected\":\"True if the contract implements the interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the pool is configured for the chain\\\"};duplicate=1\",\"expected\":\"True if the pool is configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"True if the token is supported by this pool\\\"};duplicate=1\",\"expected\":\"True if the token is supported by this pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=24\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=25\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=26\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=27\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=28\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=29\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=30\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=31\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=32\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=33\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=34\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=35\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=36\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=37\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=38\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=39\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=40\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=41\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=42\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=43\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=44\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=45\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=46\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=47\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=48\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=49\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=50\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=51\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates both inbound and outbound rate limits\\\"};duplicate=1\",\"expected\":\"Updates both inbound and outbound rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates chain configurations in bulk.\\\"};duplicate=1\",\"expected\":\"Updates chain configurations in bulk.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates rate limit configurations for multiple chains.\\\"};duplicate=1\",\"expected\":\"Updates rate limit configurations for multiple chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\\\"};duplicate=1\",\"expected\":\"Updates the allowlist by removing and adding addresses in a single operation. Only callable when allowlist is enabled (i_allowlistEnabled = true).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the router contract address.\\\"};duplicate=1\",\"expected\":\"Updates the router contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=1\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates token bucket state based on elapsed time\\\"};duplicate=2\",\"expected\":\"Updates token bucket state based on elapsed time\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updating chain configurations Only callable by owner.\\\"};duplicate=1\",\"expected\":\"Updating chain configurations Only callable by owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\\\"};duplicate=1\",\"expected\":\"Used when communicating token decimal information to other chains. The encoding format ensures compatibility across different chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=1\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses token bucket algorithm to manage rate limits:\\\"};duplicate=2\",\"expected\":\"Uses token bucket algorithm to manage rate limits:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates both rate limit configurations\\\"};duplicate=1\",\"expected\":\"Validates both rate limit configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=1\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates if requested amount can be consumed\\\"};duplicate=2\",\"expected\":\"Validates if requested amount can be consumed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates non-zero addresses for token, router, and RMN proxy\\\"};duplicate=1\",\"expected\":\"Validates non-zero addresses for token, router, and RMN proxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the chain exists\\\"};duplicate=1\",\"expected\":\"Validates that the chain exists\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates that the decoded value is within uint8 range\\\"};duplicate=1\",\"expected\":\"Validates that the decoded value is within uint8 range\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=1\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validates:\\\"};duplicate=2\",\"expected\":\"Validates:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies if a pool address is configured for a remote chain.\\\"};duplicate=1\",\"expected\":\"Verifies if a pool address is configured for a remote chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifies token decimals match if ERC20Metadata is supported\\\"};duplicate=1\",\"expected\":\"Verifies token decimals match if ERC20Metadata is supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"actual\\\"};duplicate=1\",\"expected\":\"actual\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=2\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=3\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=4\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=5\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=6\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=10\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=4\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=5\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=6\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=7\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=8\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=9\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=1\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"adds\\\"};duplicate=2\",\"expected\":\"adds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlist\\\"};duplicate=1\",\"expected\":\"allowlist\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=2\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=3\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=4\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=3\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=4\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=5\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes4\\\"};duplicate=1\",\"expected\":\"bytes4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=1\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=2\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=3\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=4\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=5\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=6\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=7\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes\\\"};duplicate=8\",\"expected\":\"bytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"caller\\\"};duplicate=1\",\"expected\":\"caller\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=1\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event upon successful locking\\\"};duplicate=1\",\"expected\":\"event upon successful locking\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event.\\\"};duplicate=1\",\"expected\":\"event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=1\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event\\\"};duplicate=2\",\"expected\":\"event\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"expected\\\"};duplicate=1\",\"expected\":\"expected\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not an authorized offRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not an authorized offRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the caller is not the authorized onRamp\\\"};duplicate=1\",\"expected\":\"if the caller is not the authorized onRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=1\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=2\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the chain is not configured\\\"};duplicate=3\",\"expected\":\"if the chain is not configured\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool address is empty\\\"};duplicate=1\",\"expected\":\"if the pool address is empty\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is already configured for this chain\\\"};duplicate=1\",\"expected\":\"if the pool is already configured for this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if the pool is not configured for the chain\\\"};duplicate=1\",\"expected\":\"if the pool is not configured for the chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=1\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if:\\\"};duplicate=2\",\"expected\":\"if:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=1\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfig\\\"};duplicate=2\",\"expected\":\"inboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundConfigs\\\"};duplicate=1\",\"expected\":\"inboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Active rate limiter for receiving tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\\\"};duplicate=1\",\"expected\":\"inboundRateLimiterConfig: Rate limits for receiving tokens from this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"interfaceId\\\"};duplicate=1\",\"expected\":\"interfaceId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localDecimals\\\"};duplicate=1\",\"expected\":\"localDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"localTokenDecimals\\\"};duplicate=1\",\"expected\":\"localTokenDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lockOrBurnIn\\\"};duplicate=1\",\"expected\":\"lockOrBurnIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newRouter\\\"};duplicate=1\",\"expected\":\"newRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=1\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfig\\\"};duplicate=2\",\"expected\":\"outboundConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundConfigs\\\"};duplicate=1\",\"expected\":\"outboundConfigs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Active rate limiter for sending tokens\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Active rate limiter for sending tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\\\"};duplicate=1\",\"expected\":\"outboundRateLimiterConfig: Rate limits for sending tokens to this chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"releaseOrMintIn\\\"};duplicate=1\",\"expected\":\"releaseOrMintIn\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=1\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteAmount\\\"};duplicate=2\",\"expected\":\"remoteAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector: Chain identifier\\\"};duplicate=1\",\"expected\":\"remoteChainSelector: Chain identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=1\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=10\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=11\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=12\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=13\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=14\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=15\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=2\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=3\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=4\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=5\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=6\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=7\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=8\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelector\\\"};duplicate=9\",\"expected\":\"remoteChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteChainSelectors\\\"};duplicate=1\",\"expected\":\"remoteChainSelectors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=1\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteDecimals\\\"};duplicate=2\",\"expected\":\"remoteDecimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=1\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=2\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=3\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=4\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddress\\\"};duplicate=5\",\"expected\":\"remotePoolAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePoolAddresses: List of authorized pool addresses on the remote chain\\\"};duplicate=1\",\"expected\":\"remotePoolAddresses: List of authorized pool addresses on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remotePools: Set of authorized pool addresses (stored as hashes)\\\"};duplicate=1\",\"expected\":\"remotePools: Set of authorized pool addresses (stored as hashes)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=1\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"remoteTokenAddress: Token address on the remote chain\\\"};duplicate=2\",\"expected\":\"remoteTokenAddress: Token address on the remote chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=1\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removes\\\"};duplicate=2\",\"expected\":\"removes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rmnProxy\\\"};duplicate=1\",\"expected\":\"rmnProxy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"router\\\"};duplicate=1\",\"expected\":\"router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sender\\\"};duplicate=1\",\"expected\":\"sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=1\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourcePoolData\\\"};duplicate=2\",\"expected\":\"sourcePoolData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=1\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=2\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"token\\\"};duplicate=3\",\"expected\":\"token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true is enabled, false if not.\\\"};duplicate=1\",\"expected\":\"true is enabled, false if not.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=5\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=6\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=7\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=1\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64[]\\\"};duplicate=2\",\"expected\":\"uint64[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=10\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=11\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=12\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=13\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=14\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=15\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=4\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=5\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=6\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=7\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=8\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=9\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=2\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=3\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=4\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=5\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=6\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when successful.\\\"};duplicate=1\",\"expected\":\"when successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when the pool is successfully added.\\\"};duplicate=1\",\"expected\":\"when the pool is successfully added.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/evm/v1.6.3/token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain config PDA to delete.\\\"};duplicate=1\",\"expected\":\"Chain config PDA to delete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain config PDA to initialize.\\\"};duplicate=1\",\"expected\":\"Chain config PDA to initialize.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain config PDA.\\\"};duplicate=1\",\"expected\":\"Chain config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain config PDA.\\\"};duplicate=2\",\"expected\":\"Chain config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain config PDA.\\\"};duplicate=3\",\"expected\":\"Chain config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_chainconfig\\\\\\\", remote_chain_selector, mint] under this program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_chainconfig\\\", remote_chain_selector, mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_chainconfig\\\\\\\", remote_chain_selector, mint] under this program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_chainconfig\\\", remote_chain_selector, mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_chainconfig\\\\\\\", remote_chain_selector, mint] under this program.\\\"};duplicate=3\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_chainconfig\\\", remote_chain_selector, mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_chainconfig\\\\\\\", remote_chain_selector, mint] under this program.\\\"};duplicate=4\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_chainconfig\\\", remote_chain_selector, mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_chainconfig\\\\\\\", remote_chain_selector, mint] under this program.\\\"};duplicate=5\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_chainconfig\\\", remote_chain_selector, mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_chainconfig\\\\\\\", remote_chain_selector, mint] under this program.\\\"};duplicate=6\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_chainconfig\\\", remote_chain_selector, mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=10\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=11\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=12\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=13\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=3\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=4\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=5\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=6\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=7\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=8\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_config\\\\\\\", mint] under this program.\\\"};duplicate=9\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_config\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_signer\\\\\\\", mint] under this program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_signer\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_signer\\\\\\\", mint] under this program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_signer\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"ccip_tokenpool_signer\\\\\\\", mint] under this program.\\\"};duplicate=3\",\"expected\":\"Derivation: [\\\"ccip_tokenpool_signer\\\", mint] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under this program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"config\\\"] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under this program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"config\\\"] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under this program.\\\"};duplicate=3\",\"expected\":\"Derivation: [\\\"config\\\"] under this program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Existing chain config PDA.\\\"};duplicate=1\",\"expected\":\"Existing chain config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Global pool config PDA to initialize.\\\"};duplicate=1\",\"expected\":\"Global pool config PDA to initialize.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Global pool config PDA.\\\"};duplicate=1\",\"expected\":\"Global pool config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Global pool config PDA.\\\"};duplicate=2\",\"expected\":\"Global pool config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool signer PDA.\\\"};duplicate=1\",\"expected\":\"Pool signer PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool signer PDA.\\\"};duplicate=2\",\"expected\":\"Pool signer PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool signer PDA.\\\"};duplicate=3\",\"expected\":\"Pool signer PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA to initialize.\\\"};duplicate=1\",\"expected\":\"Pool state PDA to initialize.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA with uninitialized version.\\\"};duplicate=1\",\"expected\":\"Pool state PDA with uninitialized version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=1\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=10\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=11\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=2\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=3\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=4\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=5\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=6\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=7\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=8\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pool state PDA.\\\"};duplicate=9\",\"expected\":\"Pool state PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=16\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=17\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=18\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=19\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=20\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=21\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=22\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=23\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=24\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=25\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The cross-chain message payload itself. It includes:\\\"};duplicate=1\",\"expected\":\"The cross-chain message payload itself. It includes:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Arbitrary data payload\\\"};duplicate=1\",\"expected\":\"• Arbitrary data payload\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Fees and more\\\"};duplicate=1\",\"expected\":\"• Fees and more\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• The sender's address\\\"};duplicate=1\",\"expected\":\"• The sender's address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Token transfer details\\\"};duplicate=1\",\"expected\":\"• Token transfer details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [ALLOWED_OFFRAMP, source_chain_selector, offramp_program_key] under the Router program. Must be the third account.\\\"};duplicate=1\",\"expected\":\"Derivation: [ALLOWED_OFFRAMP, source_chain_selector, offramp_program_key] under the Router program. Must be the third account.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [EXTERNAL_EXECUTION_CONFIG_SEED, receiver_program_id] under the offramp_program.\\\"};duplicate=1\",\"expected\":\"Derivation: [EXTERNAL_EXECUTION_CONFIG_SEED, receiver_program_id] under the offramp_program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA owned by the Router program that verifies this Offramp is allowed.\\\"};duplicate=1\",\"expected\":\"PDA owned by the Router program that verifies this Offramp is allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Offramp CPI signer PDA. This must be the first account.\\\"};duplicate=1\",\"expected\":\"The Offramp CPI signer PDA. This must be the first account.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"&[AccountInfo]\\\"};duplicate=1\",\"expected\":\"&[AccountInfo]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"&[AccountInfo]\\\"};duplicate=2\",\"expected\":\"&[AccountInfo]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(slice)\\\"};duplicate=1\",\"expected\":\"(slice)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(slice)\\\"};duplicate=2\",\"expected\":\"(slice)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A per-fee-token PDA in the Fee Quoter program stores token-specific parameters (price data, billing premiums, etc.) used to calculate fees.\\\"};duplicate=1\",\"expected\":\"A per-fee-token PDA in the Fee Quoter program stores token-specific parameters (price data, billing premiums, etc.) used to calculate fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A token billing configuration account under the Fee Quoter program. It contains settings such as whether there is a specific pricing for the token, its pricing in USD, and any premium multipliers.\\\"};duplicate=1\",\"expected\":\"A token billing configuration account under the Fee Quoter program. It contains settings such as whether there is a specific pricing for the token, its pricing in USD, and any premium multipliers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Current nonce PDA for (authority, dest_chain_selector).\\\"};duplicate=1\",\"expected\":\"Current nonce PDA for (authority, dest_chain_selector).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: If the message pays fees in native SOL, the seed uses the native_mint::ID; otherwise, it uses the SPL token's mint public key. [\\\\\\\"fee_billing_token_config\\\\\\\", seed] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"Derivation: If the message pays fees in native SOL, the seed uses the native_mint::ID; otherwise, it uses the SPL token's mint public key. [\\\"fee_billing_token_config\\\", seed] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: It is derived via the Associated Token Program seeds: [authority_pubkey, fee_token_program.key(), fee_token_mint.key() ] under the relevant Token Program (Make sure you use the correct token program ID—Token-2022 vs.SPL Token). If paying with native SOL, pass the zero address (Pubkey::default()) and do not mark it writable.\\\"};duplicate=1\",\"expected\":\"Derivation: It is derived via the Associated Token Program seeds: [authority_pubkey, fee_token_program.key(), fee_token_mint.key() ] under the relevant Token Program (Make sure you use the correct token program ID—Token-2022 vs.SPL Token). If paying with native SOL, pass the zero address (Pubkey::default()) and do not mark it writable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=3\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=4\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=5\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=6\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=7\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the ccip_router program.\\\"};duplicate=8\",\"expected\":\"Derivation: [\\\"config\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"config\\\"] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the fee_quoter program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"config\\\"] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"config\\\\\\\"] under the rmn_remote program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"config\\\"] under the rmn_remote program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"curses\\\\\\\"] under the rmn_remote program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"curses\\\"] under the rmn_remote program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"dest_chain\\\\\\\", dest_chain_selector] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"dest_chain\\\", dest_chain_selector] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"dest_chain\\\\\\\",dest_chain_selector] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"dest_chain\\\",dest_chain_selector] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"dest_chain_state\\\\\\\", dest_chain_selector] under the ccip_router program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"dest_chain_state\\\", dest_chain_selector] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"dest_chain_state\\\\\\\", dest_chain_selector] under the ccip_router program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"dest_chain_state\\\", dest_chain_selector] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"external_token_pools_signer\\\\\\\"] under the ccip_router program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"external_token_pools_signer\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"fee_billing_signer\\\\\\\"] under the ccip_router program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"fee_billing_signer\\\"] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"fee_billing_token_config\\\\\\\", fee_token_mint] under the fee_quoter program. Uses native_mint::ID if paying with native SOL.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"fee_billing_token_config\\\", fee_token_mint] under the fee_quoter program. Uses native_mint::ID if paying with native SOL.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"fee_billing_token_config\\\\\\\", link_token_mint] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"fee_billing_token_config\\\", link_token_mint] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"fee_billing_token_config\\\\\\\", link_token_mint] under the fee_quoter program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"fee_billing_token_config\\\", link_token_mint] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"nonce\\\\\\\", dest_chain_selector, authority_pubkey] under the ccip_router program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"nonce\\\", dest_chain_selector, authority_pubkey] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"token_admin_registry\\\\\\\", mint] under the ccip_router program.\\\"};duplicate=1\",\"expected\":\"Derivation: [\\\"token_admin_registry\\\", mint] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"token_admin_registry\\\\\\\", mint] under the ccip_router program.\\\"};duplicate=2\",\"expected\":\"Derivation: [\\\"token_admin_registry\\\", mint] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"token_admin_registry\\\\\\\", mint] under the ccip_router program.\\\"};duplicate=3\",\"expected\":\"Derivation: [\\\"token_admin_registry\\\", mint] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"token_admin_registry\\\\\\\", mint] under the ccip_router program.\\\"};duplicate=4\",\"expected\":\"Derivation: [\\\"token_admin_registry\\\", mint] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"token_admin_registry\\\\\\\", mint] under the ccip_router program.\\\"};duplicate=5\",\"expected\":\"Derivation: [\\\"token_admin_registry\\\", mint] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: [\\\\\\\"token_admin_registry\\\\\\\", mint] under the ccip_router program.\\\"};duplicate=6\",\"expected\":\"Derivation: [\\\"token_admin_registry\\\", mint] under the ccip_router program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derivation: from [fee_billing_signer,fee_token_program.key(),fee_token_mint.key()].\\\"};duplicate=1\",\"expected\":\"Derivation: from [fee_billing_signer,fee_token_program.key(),fee_token_mint.key()].\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Existing token admin registry PDA.\\\"};duplicate=1\",\"expected\":\"Existing token admin registry PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Existing token admin registry PDA.\\\"};duplicate=2\",\"expected\":\"Existing token admin registry PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Existing token admin registry PDA.\\\"};duplicate=3\",\"expected\":\"Existing token admin registry PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Existing token admin registry PDA.\\\"};duplicate=4\",\"expected\":\"Existing token admin registry PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee token billing configuration PDA.\\\"};duplicate=1\",\"expected\":\"Fee token billing configuration PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If fees are paid in SPL, this is the user's ATA.\\\"};duplicate=1\",\"expected\":\"If fees are paid in SPL, this is the user's ATA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK token billing configuration PDA for fee conversion.\\\"};duplicate=1\",\"expected\":\"LINK token billing configuration PDA for fee conversion.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: In most cases, tokens do not have a custom billing fee structure. In these cases, CCIP uses the fallback default fee configuration.\\\"};duplicate=1\",\"expected\":\"Note: In most cases, tokens do not have a custom billing fee structure. In these cases, CCIP uses the fallback default fee configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: In most cases, tokens do not have a custom billing fee structure. In these cases, CCIP uses the fallback default fee configuration.\\\"};duplicate=2\",\"expected\":\"Note: In most cases, tokens do not have a custom billing fee structure. In these cases, CCIP uses the fallback default fee configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA [\\\\\\\"fee_billing_token_config\\\\\\\", mint] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"PDA [\\\"fee_billing_token_config\\\", mint] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA [\\\\\\\"per_chain_per_token_config\\\\\\\", dest_chain_selector, mint] under the fee_quoter program.\\\"};duplicate=1\",\"expected\":\"PDA [\\\"per_chain_per_token_config\\\", dest_chain_selector, mint] under the fee_quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA containing list of curses chain selectors and global curses.\\\"};duplicate=1\",\"expected\":\"PDA containing list of curses chain selectors and global curses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA containing the Fee Quoter's LINK token billing configuration (LINK price data, premium multipliers, etc.). The fee token amount is converted into \\\\\\\"juels\\\\\\\" using LINK's valuation from this account during fee calculation.\\\"};duplicate=1\",\"expected\":\"PDA containing the Fee Quoter's LINK token billing configuration (LINK price data, premium multipliers, etc.). The fee token amount is converted into \\\"juels\\\" using LINK's valuation from this account during fee calculation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA is the router's billing authority for transferring fees (native SOL or SPL tokens).\\\"};duplicate=1\",\"expected\":\"PDA is the router's billing authority for transferring fees (native SOL or SPL tokens).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PDA with the authority to CPI into token pool logic (mint/burn, lock/release).\\\"};duplicate=1\",\"expected\":\"PDA with the authority to CPI into token pool logic (mint/burn, lock/release).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Per-destination blockchain PDA for retrieving lane version.\\\"};duplicate=1\",\"expected\":\"Per-destination blockchain PDA for retrieving lane version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Per-destination blockchain PDA for sequence_number, chain config, etc.\\\"};duplicate=1\",\"expected\":\"Per-destination blockchain PDA for sequence_number, chain config, etc.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Per-destination blockchain PDA in the Fee Quoter program. It stores chain-specific configuration (gas price data, limits, etc.) for SVM2Any messages.\\\"};duplicate=1\",\"expected\":\"Per-destination blockchain PDA in the Fee Quoter program. It stores chain-specific configuration (gas price data, limits, etc.) for SVM2Any messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Per-destination blockchain PDA in the Fee Quoter program.\\\"};duplicate=1\",\"expected\":\"Per-destination blockchain PDA in the Fee Quoter program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Per-destination blockchain-specific fee overrides for a given token.\\\"};duplicate=1\",\"expected\":\"Per-destination blockchain-specific fee overrides for a given token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RMN config PDA, containing configuration that control how curse verification works.\\\"};duplicate=1\",\"expected\":\"RMN config PDA, containing configuration that control how curse verification works.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=1\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=2\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=3\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=4\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=5\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=6\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=7\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router config PDA.\\\"};duplicate=8\",\"expected\":\"Router config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ATA where all the fees are collected.\\\"};duplicate=1\",\"expected\":\"The ATA where all the fees are collected.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The global Fee Quoter config PDA.\\\"};duplicate=1\",\"expected\":\"The global Fee Quoter config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The global Fee Quoter config PDA.\\\"};duplicate=2\",\"expected\":\"The global Fee Quoter config PDA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token admin registry PDA to initialize.\\\"};duplicate=1\",\"expected\":\"Token admin registry PDA to initialize.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Token admin registry PDA to initialize.\\\"};duplicate=2\",\"expected\":\"Token admin registry PDA to initialize.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from fee_token_user_associated_account to fee_token_receiver.\\\"};duplicate=1\",\"expected\":\"from fee_token_user_associated_account to fee_token_receiver.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=16\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=17\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=18\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=19\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=20\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=21\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=22\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=23\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=24\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=25\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=26\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=27\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=28\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=29\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=30\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=31\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=32\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=33\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=34\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=35\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=36\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=23\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=24\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=25\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=26\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=27\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=28\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=29\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=30\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=31\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=32\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=33\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=34\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=35\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=36\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=37\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=38\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=39\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=40\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=41\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=42\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=43\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=44\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=45\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=46\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=47\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=48\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=49\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=50\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=51\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=52\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=53\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=54\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=55\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=56\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=57\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=58\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=59\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=60\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=61\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=62\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=63\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=64\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=65\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=66\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=67\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=68\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=69\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=70\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=71\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=72\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=73\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=74\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=75\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=76\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=77\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=78\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=79\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=80\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=81\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=82\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=83\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=84\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=85\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=86\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=87\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=88\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=89\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=90\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=91\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=92\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=93\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=94\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/svm/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=95\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/ton\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/ton\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=23\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=24\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=25\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=26\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=27\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=28\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=29\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=30\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=31\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=32\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=33\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=34\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=35\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=36\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=37\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=38\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=39\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=40\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=41\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=42\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=43\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=44\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=45\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=46\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=47\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/starter-kit-helpers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=23\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=24\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=25\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=26\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=27\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=28\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=29\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=30\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=31\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=32\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=33\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=34\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=35\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=36\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=37\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=38\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=39\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=40\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=41\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=42\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=43\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=44\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=45\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=46\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=47\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=48\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=49\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=50\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=51\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=52\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=53\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=54\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=55\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=56\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=57\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=58\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=59\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=60\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=61\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=62\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=63\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=64\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/errors\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=20\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=21\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=22\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=23\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=24\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=25\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=26\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=27\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=28\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=29\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=30\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=31\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=32\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/receiver\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=1\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=10\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=11\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=12\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=13\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=14\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=15\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=16\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=17\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=18\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=19\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=2\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=3\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=4\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=5\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=6\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=7\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=8\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/api-reference/ton/v1.6.0/router\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"nobr\\\",\\\"reason\\\":\\\"Raw HTML element nobr is not statically projected\\\"};duplicate=9\",\"component\":\"nobr\",\"reason\":\"Raw HTML element nobr is not statically projected\"}", + "{\"path\":\"ccip/billing\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TokenCalculator\\\",\\\"reason\\\":\\\"Unsupported MDX component TokenCalculator\\\"};duplicate=1\",\"component\":\"TokenCalculator\",\"reason\":\"Unsupported MDX component TokenCalculator\"}", + "{\"path\":\"ccip/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Billing\\\",\\\"reason\\\":\\\"Billing content depends on imported fee configuration and runtime calculations\\\"};duplicate=1\",\"component\":\"Billing\",\"reason\":\"Billing content depends on imported fee configuration and runtime calculations\"}", + "{\"path\":\"ccip/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/architecture/key-concepts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: CCIP currently supports arbitrary message passing on TON only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"Note: CCIP currently supports arbitrary message passing on TON only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/key-concepts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more.\\\"};duplicate=1\",\"expected\":\"to learn more.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/key-concepts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Commit Phase\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Commit Phase\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FeeQuoter\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"FeeQuoter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OffRamp\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"OffRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"OnRamp\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"OnRamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Router\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Router\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"SendExecutor{id}\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"SendExecutor{id}\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sender/Receiver\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Sender/Receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Estimating the CCIP Fee\\\",\\\"url\\\":\\\"/ccip/tutorials/ton/source/build-messages#estimating-the-ccip-fee\\\"};duplicate=1\",\"expected\":\"Estimating the CCIP Fee -> /ccip/tutorials/ton/source/build-messages#estimating-the-ccip-fee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Sender Responsibilities\\\",\\\"url\\\":\\\"#senderreceiver\\\"};duplicate=1\",\"expected\":\"Sender Responsibilities -> #senderreceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A CCIP Message on TON can include:\\\"};duplicate=1\",\"expected\":\"A CCIP Message on TON can include:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A smart contract — Onchain executable logic written in Tolk or FunC.\\\"};duplicate=1\",\"expected\":\"A smart contract — Onchain executable logic written in Tolk or FunC.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A user-controlled wallet — A wallet account controlled by a private key.\\\"};duplicate=1\",\"expected\":\"A user-controlled wallet — A wallet account controlled by a private key.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts CCIPSend messages from senders. Requires a minimum GRAM value (Router_Costs.CCIPSend()); messages with insufficient value are rejected before any further processing.\\\"};duplicate=1\",\"expected\":\"Accepts CCIPSend messages from senders. Requires a minimum GRAM value (Router_Costs.CCIPSend()); messages with insufficient value are rejected before any further processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts FeeQuoter_GetValidatedFee from the SendExecutor{id} (routed via the OnRamp). Validates the message payload (receiver encoding, gas limit, supported destination chain, fee token), computes the total fee from execution cost, premium multiplier, and data availability cost, and replies with either FeeQuoter_MessageValidated (including the fee amount) or FeeQuoter_MessageValidationFailed.\\\"};duplicate=1\",\"expected\":\"Accepts FeeQuoter_GetValidatedFee from the SendExecutor{id} (routed via the OnRamp). Validates the message payload (receiver encoding, gas limit, supported destination chain, fee token), computes the total fee from execution cost, premium multiplier, and data availability cost, and replies with either FeeQuoter_MessageValidated (including the fee amount) or FeeQuoter_MessageValidationFailed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts FeeQuoter_UpdatePrices from the OffRamp (forwarded from OCR Commit reports) to update token and gas prices onchain.\\\"};duplicate=1\",\"expected\":\"Accepts FeeQuoter_UpdatePrices from the OffRamp (forwarded from OCR Commit reports) to update token and gas prices onchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts Router_CCIPReceiveConfirm from any caller (permissionless at the Router level; authorization is enforced by the ReceiveExecutor) and forwards OffRamp_CCIPReceiveConfirm to the OffRamp.\\\"};duplicate=1\",\"expected\":\"Accepts Router_CCIPReceiveConfirm from any caller (permissionless at the Router level; authorization is enforced by the ReceiveExecutor) and forwards OffRamp_CCIPReceiveConfirm to the OffRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts Router_GetValidatedFee from any caller, relays to the OnRamp, and returns the result (Router_MessageValidated or Router_MessageValidationFailed).\\\"};duplicate=1\",\"expected\":\"Accepts Router_GetValidatedFee from any caller, relays to the OnRamp, and returns the result (Router_MessageValidated or Router_MessageValidationFailed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts Router_RMNRemoteCurse and Router_RMNRemoteUncurse messages exclusively from the authorized RMN admin (Ownable2Step-gated).\\\"};duplicate=1\",\"expected\":\"Accepts Router_RMNRemoteCurse and Router_RMNRemoteUncurse messages exclusively from the authorized RMN admin (Ownable2Step-gated).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts Router_RouteMessage from the registered OffRamp for the source chain and forwards CCIPReceive to the Receiver contract.\\\"};duplicate=1\",\"expected\":\"Accepts Router_RouteMessage from the registered OffRamp for the source chain and forwards CCIPReceive to the Receiver contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Accepts permissionless Router_RMNRemoteVerifyNotCursed queries and synchronously replies with whether the given subject is cursed.\\\"};duplicate=1\",\"expected\":\"Accepts permissionless Router_RMNRemoteVerifyNotCursed queries and synchronously replies with whether the given subject is cursed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlist check: If allowlistEnabled is set for the destination chain configuration, verifies the sender address is in the allowedSenders map for that lane. Rejects the message if not.\\\"};duplicate=1\",\"expected\":\"Allowlist check: If allowlistEnabled is set for the destination chain configuration, verifies the sender address is in the allowedSenders map for that lane. Rejects the message if not.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"An arbitrary bytes data payload.\\\"};duplicate=1\",\"expected\":\"An arbitrary bytes data payload.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"As the RMN Contract, the Router:\\\"};duplicate=1\",\"expected\":\"As the RMN Contract, the Router:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP supports the following as senders and receivers on TON:\\\"};duplicate=1\",\"expected\":\"CCIP supports the following as senders and receivers on TON:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks the destination chain is not cursed (using its locally stored CursedSubjects) before forwarding to the OnRamp.\\\"};duplicate=1\",\"expected\":\"Checks the destination chain is not cursed (using its locally stored CursedSubjects) before forwarding to the OnRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Confirmation: The receiver must reply with a CCIPReceiveConfirm{execId} message back to the Router after processing the message. This confirmation must carry sufficient GRAM to cover the confirmation trace costs (Router_Costs.receiveConfirm()). Without this confirmation the execution is treated as failed.\\\"};duplicate=1\",\"expected\":\"Confirmation: The receiver must reply with a CCIPReceiveConfirm{execId} message back to the Router after processing the message. This confirmation must carry sufficient GRAM to cover the confirmation trace costs (Router_Costs.receiveConfirm()). Without this confirmation the execution is treated as failed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Curse and source chain check: The OffRamp checks its locally replicated CursedSubjects and verifies the source chain is enabled in sourceChainConfigs. If either check fails, the report is rejected.\\\"};duplicate=1\",\"expected\":\"Curse and source chain check: The OffRamp checks its locally replicated CursedSubjects and verifies the source chain is enabled in sourceChainConfigs. If either check fails, the report is rejected.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Detects a bounced CCIPReceive from the Receiver and forwards OffRamp_CCIPReceiveBounced to the OffRamp.\\\"};duplicate=1\",\"expected\":\"Detects a bounced CCIPReceive from the Receiver and forwards OffRamp_CCIPReceiveBounced to the OffRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ExecutorFinishedSuccessfully handling: When the SendExecutor reports success, the OnRamp assigns the next sequence number for the destination chain, generates the messageId (as a hash over a metadata preimage, the sender address, sequence number, nonce, and message body), emits a CCIPMessageSent chain log containing the complete TVM2AnyRampMessage, and sends Router_MessageSent back to the Router. The collected CCIP fee is retained in the OnRamp's balance.\\\"};duplicate=1\",\"expected\":\"ExecutorFinishedSuccessfully handling: When the SendExecutor reports success, the OnRamp assigns the next sequence number for the destination chain, generates the messageId (as a hash over a metadata preimage, the sender address, sequence number, nonce, and message body), emits a CCIPMessageSent chain log containing the complete TVM2AnyRampMessage, and sends Router_MessageSent back to the Router. The collected CCIP fee is retained in the OnRamp's balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ExecutorFinishedWithError handling: Forwards a Router_MessageRejected notification to the Router with the error code.\\\"};duplicate=1\",\"expected\":\"ExecutorFinishedWithError handling: Forwards a Router_MessageRejected notification to the Router with the error code.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Failure handling: If the receiver cannot process the message, it may allow CCIPReceive to bounce. The Router detects the bounce and forwards CCIPReceiveBounced to the OffRamp, initiating the failure path.\\\"};duplicate=1\",\"expected\":\"Failure handling: If the receiver cannot process the message, it may allow CCIPReceive to bounce. The Router detects the bounce and forwards CCIPReceiveBounced to the OffRamp, initiating the failure path.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fee check: The OffRamp verifies the attached GRAM covers the minimum commit cost. Price-update-only reports require less GRAM than reports with Merkle roots.\\\"};duplicate=1\",\"expected\":\"Fee check: The OffRamp verifies the attached GRAM covers the minimum commit cost. Price-update-only reports require less GRAM than reports with Merkle roots.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For arbitrary message passing, the supported sender/receiver combinations are:\\\"};duplicate=1\",\"expected\":\"For arbitrary message passing, the supported sender/receiver combinations are:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Is deployed and immediately receives CCIPSendExecutor_Execute (a self-message sent as part of Deployable_InitializeAndSend), which carries the full OnRamp_Send payload and the FeeQuoter address.\\\"};duplicate=1\",\"expected\":\"Is deployed and immediately receives CCIPSendExecutor_Execute (a self-message sent as part of Deployable_InitializeAndSend), which carries the full OnRamp_Send payload and the FeeQuoter address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Is destroyed after reporting (state Finalized is terminal; the contract returns its remaining balance to the OnRamp).\\\"};duplicate=1\",\"expected\":\"Is destroyed after reporting (state Finalized is terminal; the contract returns its remaining balance to the OnRamp).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MerkleRoot deployment: Deploys a MerkleRoot{id} contract by sending Deployable_Initialize to its deterministic address. The MerkleRoot{id} is initialized with the Merkle root value, the OffRamp's address as owner, the current timestamp, and the sequence number range.\\\"};duplicate=1\",\"expected\":\"MerkleRoot deployment: Deploys a MerkleRoot{id} contract by sending Deployable_Initialize to its deterministic address. The MerkleRoot{id} is initialized with the Merkle root value, the OffRamp's address as owner, the current timestamp, and the sequence number range.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OCR3 signature verification and event emission: Calls ocr3Base.transmit() to verify the Committing DON's signatures and emit OCR3Base_Transmitted. Then emits CommitReportAccepted.\\\"};duplicate=1\",\"expected\":\"OCR3 signature verification and event emission: Calls ocr3Base.transmit() to verify the Committing DON's signatures and emit OCR3Base_Transmitted. Then emits CommitReportAccepted.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On FeeQuoter_MessageValidated: verifies the sender attached enough value to cover the CCIP fee, then reports OnRamp_ExecutorFinishedSuccessfully to the OnRamp carrying the fee amount and returning any remaining balance.\\\"};duplicate=1\",\"expected\":\"On FeeQuoter_MessageValidated: verifies the sender attached enough value to cover the CCIP fee, then reports OnRamp_ExecutorFinishedSuccessfully to the OnRamp carrying the fee amount and returning any remaining balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On FeeQuoter_MessageValidationFailed or a bounce of FeeQuoter_GetValidatedFee: reports OnRamp_ExecutorFinishedWithError to the OnRamp.\\\"};duplicate=1\",\"expected\":\"On FeeQuoter_MessageValidationFailed or a bounce of FeeQuoter_GetValidatedFee: reports OnRamp_ExecutorFinishedWithError to the OnRamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On each curse or un-curse operation, emits a Cursed or Uncursed chain log and updates the forwardUpdates set, then propagates OffRamp_UpdateCursedSubjects to every registered OffRamp address (one message per unique OffRamp). The forwardUpdates set is rebuilt automatically whenever the onRamps/offRamps maps change.\\\"};duplicate=1\",\"expected\":\"On each curse or un-curse operation, emits a Cursed or Uncursed chain log and updates the forwardUpdates set, then propagates OffRamp_UpdateCursedSubjects to every registered OffRamp address (one message per unique OffRamp). The forwardUpdates set is rebuilt automatically whenever the onRamps/offRamps maps change.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the destination chain (receiving), the Router:\\\"};duplicate=1\",\"expected\":\"On the destination chain (receiving), the Router:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the source chain (sending), the Router:\\\"};duplicate=1\",\"expected\":\"On the source chain (sending), the Router:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the source chain, the FeeQuoter:\\\"};duplicate=1\",\"expected\":\"On the source chain, the FeeQuoter:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Prepare the CCIPSend message, including the encoded receiver address, data payload, destination chain selector, and extra arguments (e.g., gas limit for EVM destination chains).\\\"};duplicate=1\",\"expected\":\"Prepare the CCIPSend message, including the encoded receiver address, data payload, destination chain selector, and extra arguments (e.g., gas limit for EVM destination chains).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Price updates: If the report includes price updates and their OCR sequence number is newer than latestPriceSequenceNumber, forwards FeeQuoter_UpdatePrices to the FeeQuoter.\\\"};duplicate=1\",\"expected\":\"Price updates: If the report includes price updates and their OCR sequence number is newer than latestPriceSequenceNumber, forwards FeeQuoter_UpdatePrices to the FeeQuoter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reason: Both the sender and receiver are programmable contracts that can initiate and handle CCIP messages with arbitrary data.\\\"};duplicate=1\",\"expected\":\"Reason: Both the sender and receiver are programmable contracts that can initiate and handle CCIP messages with arbitrary data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reason: The receiving contract implements a handler for CCIPReceive internal messages and can process the data payload.\\\"};duplicate=1\",\"expected\":\"Reason: The receiving contract implements a handler for CCIPReceive internal messages and can process the data payload.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver Responsibilities:\\\"};duplicate=1\",\"expected\":\"Receiver Responsibilities:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receives Router_MessageRejected from the OnRamp on failure and delivers CCIPSendNACK to the sender.\\\"};duplicate=1\",\"expected\":\"Receives Router_MessageRejected from the OnRamp on failure and delivers CCIPSendNACK to the sender.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receives Router_MessageSent from the OnRamp on success and delivers CCIPSendACK back to the original sender with unused GRAM.\\\"};duplicate=1\",\"expected\":\"Receives Router_MessageSent from the OnRamp on success and delivers CCIPSendACK back to the original sender with unused GRAM.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submission: The Committing DON calls OffRamp_Commit with an OCR3 report containing a Merkle root (covering a batch of messages from a source chain) and optional token/gas price updates.\\\"};duplicate=1\",\"expected\":\"Report submission: The Committing DON calls OffRamp_Commit with an OCR3 report containing a Merkle root (covering a batch of messages from a source chain) and optional token/gas price updates.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Resolves the OnRamp address for the given destination chain selector from its onRamps map and forwards the OnRamp_Send message, carrying all remaining value.\\\"};duplicate=1\",\"expected\":\"Resolves the OnRamp address for the given destination chain selector from its onRamps map and forwards the OnRamp_Send message, carrying all remaining value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieve a fee estimate using one of two methods. Unlike EVM integrations, TON contracts cannot proxy-query each other's state, so there is no free getter path through the Router:\\\"};duplicate=1\",\"expected\":\"Retrieve a fee estimate using one of two methods. Unlike EVM integrations, TON contracts cannot proxy-query each other's state, so there is no free getter path through the Router:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Security validation: The receiver contract must verify that the sender of any CCIPReceive internal message is the registered CCIP Router contract.\\\"};duplicate=1\",\"expected\":\"Security validation: The receiver contract must verify that the sender of any CCIPReceive internal message is the registered CCIP Router contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send CCIPSend to the Router with sufficient GRAM attached to cover both the CCIP fee and internal message forwarding gas costs. The router checks that the attached value meets the minimum required (Router_Costs.CCIPSend()).\\\"};duplicate=1\",\"expected\":\"Send CCIPSend to the Router with sufficient GRAM attached to cover both the CCIP fee and internal message forwarding gas costs. The router checks that the attached value meets the minimum required (Router_Costs.CCIPSend()).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SendExecutor deployment: Generates a random executorID (uint224 derived from a 256-bit random value), computes a deterministic address using autoDeployAddress(executorID), and sends Deployable_InitializeAndSend to deploy and initialize the ephemeral SendExecutor{id} contract in a single message. All remaining value is carried to the SendExecutor.\\\"};duplicate=1\",\"expected\":\"SendExecutor deployment: Generates a random executorID (uint224 derived from a 256-bit random value), computes a deterministic address using autoDeployAddress(executorID), and sends Deployable_InitializeAndSend to deploy and initialize the ephemeral SendExecutor{id} contract in a single message. All remaining value is carried to the SendExecutor.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender Responsibilities:\\\"};duplicate=1\",\"expected\":\"Sender Responsibilities:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sends FeeQuoter_GetValidatedFee to the FeeQuoter and transitions to state OnGoingFeeValidation.\\\"};duplicate=1\",\"expected\":\"Sends FeeQuoter_GetValidatedFee to the FeeQuoter and transitions to state OnGoingFeeValidation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sequence number validation: Verifies the root's minSeqNr matches the next expected sequence number for the source chain and that the range covers at most 64 messages. If valid, advances minSeqNr to maxSeqNr + 1.\\\"};duplicate=1\",\"expected\":\"Sequence number validation: Verifies the root's minSeqNr matches the next expected sequence number for the source chain and that the range covers at most 64 messages. If valid, advances minSeqNr to maxSeqNr + 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Smart Contract → Smart Contract\\\"};duplicate=1\",\"expected\":\"Smart Contract → Smart Contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores fee token premium multipliers, destination-chain fee configuration, and token prices with staleness enforcement.\\\"};duplicate=1\",\"expected\":\"Stores fee token premium multipliers, destination-chain fee configuration, and token prices with staleness enforcement.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores the set of cursed subjects (CursedSubjects) in its own storage, acting as the RMN Contract for the TON chain family. There is no separate RMN Contract contract.\\\"};duplicate=1\",\"expected\":\"Stores the set of cursed subjects (CursedSubjects) in its own storage, acting as the RMN Contract for the TON chain family. There is no separate RMN Contract contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supported Message Type: Arbitrary data.\\\"};duplicate=1\",\"expected\":\"Supported Message Type: Arbitrary data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Supported Message Type: Arbitrary data.\\\"};duplicate=2\",\"expected\":\"Supported Message Type: Arbitrary data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The FeeQuoter contract is responsible for fee validation and price data storage.\\\"};duplicate=1\",\"expected\":\"The FeeQuoter contract is responsible for fee validation and price data storage.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The OffRamp contract operates on the destination chain and is the primary contract that the offchain Committing and Executing DONs interact with.\\\"};duplicate=1\",\"expected\":\"The OffRamp contract operates on the destination chain and is the primary contract that the offchain Committing and Executing DONs interact with.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The OnRamp also handles fee withdrawal (OnRamp_WithdrawFeeTokens, permissionless), dynamic config updates (owner-only), destination chain config updates (owner-only), and allowlist updates (allowlist admin or owner).\\\"};duplicate=1\",\"expected\":\"The OnRamp also handles fee withdrawal (OnRamp_WithdrawFeeTokens, permissionless), dynamic config updates (owner-only), destination chain config updates (owner-only), and allowlist updates (allowlist admin or owner).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The OnRamp contract processes all outbound CCIP messages on the source chain. It is not called directly by users; the Router is the only authorized caller of OnRamp_Send.\\\"};duplicate=1\",\"expected\":\"The OnRamp contract processes all outbound CCIP messages on the source chain. It is not called directly by users; the Router is the only authorized caller of OnRamp_Send.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Router contract is the single user-facing entry point for both sending and receiving CCIP messages on TON.\\\"};duplicate=1\",\"expected\":\"The Router contract is the single user-facing entry point for both sending and receiving CCIP messages on TON.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SendExecutor{id} is an ephemeral contract deployed by the OnRamp once per outgoing message. Its address is deterministically derived from the OnRamp's address and a randomly generated id, so the OnRamp can authenticate replies without storing any state.\\\"};duplicate=1\",\"expected\":\"The SendExecutor{id} is an ephemeral contract deployed by the OnRamp once per outgoing message. Its address is deterministically derived from the OnRamp's address and a randomly generated id, so the OnRamp can authenticate replies without storing any state.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SendExecutor{id}:\\\"};duplicate=1\",\"expected\":\"The SendExecutor{id}:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unlike EVM integrations, TON contracts cannot proxy-query each other's state, so there is no free getter path through the Router. End users have two options for fee estimation: call the validatedFeeCell getter directly on the FeeQuoter (free, no transaction required), or send a Router_GetValidatedFee internal message to the Router (an actual on-chain transaction that costs gas). See\\\"};duplicate=1\",\"expected\":\"Unlike EVM integrations, TON contracts cannot proxy-query each other's state, so there is no free getter path through the Router. End users have two options for fee estimation: call the validatedFeeCell getter directly on the FeeQuoter (free, no transaction required), or send a Router_GetValidatedFee internal message to the Router (an actual on-chain transaction that costs gas). See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Via FeeQuoter getter (free): Call the validatedFeeCell getter directly on the FeeQuoter contract. This requires no transaction and incurs no gas cost. To resolve the FeeQuoter address programmatically, call Router.onRamp(destChainSelector) → OnRamp.feeQuoter(destChainSelector). The getCCIPFeeForEVM helper performs this lookup automatically — see\\\"};duplicate=1\",\"expected\":\"Via FeeQuoter getter (free): Call the validatedFeeCell getter directly on the FeeQuoter contract. This requires no transaction and incurs no gas cost. To resolve the FeeQuoter address programmatically, call Router.onRamp(destChainSelector) → OnRamp.feeQuoter(destChainSelector). The getCCIPFeeForEVM helper performs this lookup automatically — see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Via Router message (costs gas): Send a Router_GetValidatedFee message to the Router. This is an actual on-chain transaction — the Router relays the request to the OnRamp, which forwards it to the FeeQuoter. The result is returned via Router_MessageValidated (or Router_MessageValidationFailed).\\\"};duplicate=1\",\"expected\":\"Via Router message (costs gas): Send a Router_GetValidatedFee message to the Router. This is an actual on-chain transaction — the Router relays the request to the OnRamp, which forwards it to the FeeQuoter. The result is returned via Router_MessageValidated (or Router_MessageValidationFailed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Wallet → Smart Contract\\\"};duplicate=1\",\"expected\":\"Wallet → Smart Contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When the Router forwards OnRamp_Send, the OnRamp:\\\"};duplicate=1\",\"expected\":\"When the Router forwards OnRamp_Send, the OnRamp:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"above for details on both paths.\\\"};duplicate=1\",\"expected\":\"above for details on both paths.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a full example.\\\"};duplicate=1\",\"expected\":\"for a full example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/components\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Key Components\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Key Components\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/onchain/ton/overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/concepts/architecture/ton/key-concepts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: CCIP currently supports arbitrary message passing on TON only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"Note: CCIP currently supports arbitrary message passing on TON only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/ton/key-concepts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more.\\\"};duplicate=1\",\"expected\":\"to learn more.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/ton/key-concepts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/architecture/ton/overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/ton/overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/architecture/ton/overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Precision is lost when converting to the destination chain's decimals. The difference (0.000000000123456789) is not represented on the destination chain.\\\"};duplicate=1\",\"expected\":\"Precision is lost when converting to the destination chain's decimals. The difference (0.000000000123456789) is not represented on the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"View package\\\"};duplicate=1\",\"expected\":\"View package\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Burn/mint: not included in the minted amount\\\"};duplicate=1\",\"expected\":\"• Burn/mint: not included in the minted amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Lock/release: remains in the source pool\\\"};duplicate=1\",\"expected\":\"• Lock/release: remains in the source pool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Receive: 1.123456789000000000\\\"};duplicate=1\",\"expected\":\"• Receive: 1.123456789000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Receive: 1.123456789123456789\\\"};duplicate=1\",\"expected\":\"• Receive: 1.123456789123456789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Receive: 1.123456789\\\"};duplicate=1\",\"expected\":\"• Receive: 1.123456789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Send: 1.123456789123456789\\\"};duplicate=1\",\"expected\":\"• Send: 1.123456789123456789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Send: 1.123456789123456789\\\"};duplicate=2\",\"expected\":\"• Send: 1.123456789123456789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Send: 1.123456789\\\"};duplicate=1\",\"expected\":\"• Send: 1.123456789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- BurnMintTokenPool is used to burn tokens on the source blockchain, and LockReleaseTokenPool is used to unlock tokens on the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- BurnMintTokenPool is used to burn tokens on the source blockchain, and LockReleaseTokenPool is used to unlock tokens on the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- LockReleaseTokenPool must be deployed on the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- LockReleaseTokenPool must be deployed on the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- Not recommended due to fragmented liquidity and requires careful management of liquidity across multiple blockchains.\\\"};duplicate=1\",\"expected\":\"- Not recommended due to fragmented liquidity and requires careful management of liquidity across multiple blockchains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- The destination blockchain is the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- The destination blockchain is the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- The source blockchain is the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- The source blockchain is the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- Tokens are locked on the source blockchain and unlocked on the destination blockchain.\\\"};duplicate=1\",\"expected\":\"- Tokens are locked on the source blockchain and unlocked on the destination blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/evm/tokens\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/overview\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"AptosCCTCallout\\\",\\\"reason\\\":\\\"Unsupported MDX component AptosCCTCallout\\\"};duplicate=1\",\"component\":\"AptosCCTCallout\",\"reason\":\"Unsupported MDX component AptosCCTCallout\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- Can result in fragmented liquidity and requires careful management of liquidity across multiple blockchains to avoid stuck token transfers due to insufficient liquidity locked in the token pool on the destination blockchain.\\\"};duplicate=1\",\"expected\":\"- Can result in fragmented liquidity and requires careful management of liquidity across multiple blockchains to avoid stuck token transfers due to insufficient liquidity locked in the token pool on the destination blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- The BurnMint token pool burns tokens on the source blockchain, and the LockRelease token pool unlocks tokens on the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- The BurnMint token pool burns tokens on the source blockchain, and the LockRelease token pool unlocks tokens on the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- The LockRelease token pool must be deployed on the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- The LockRelease token pool must be deployed on the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- The destination blockchain is the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- The destination blockchain is the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- The source blockchain is the issuing blockchain.\\\"};duplicate=1\",\"expected\":\"- The source blockchain is the issuing blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"- Tokens are locked on the source blockchain and unlocked on the destination blockchain.\\\"};duplicate=1\",\"expected\":\"- Tokens are locked on the source blockchain and unlocked on the destination blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/cross-chain-token/svm/token-pools\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\\\"};duplicate=1\",\"expected\":\"TON currently supports arbitrary message passing only. Token transfers are not yet supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/concepts/ton/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Deploy the receiver contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Deploy the receiver contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Send data\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Send data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Read data\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"4. Read data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=2\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Code Explanation\\\",\\\"url\\\":\\\"#receiver-code\\\"};duplicate=1\",\"expected\":\"Code Explanation -> #receiver-code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open Receiver.sol in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Receiver.sol\\\"};duplicate=1\",\"expected\":\"Open Receiver.sol in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Receiver.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open the Receiver.sol\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Receiver.sol\\\"};duplicate=1\",\"expected\":\"Open the Receiver.sol -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Receiver.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x113933ec9f1b2e795a1e2f564c9d452db92d3e9a150545712687eb546916e633\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x113933ec9f1b2e795a1e2f564c9d452db92d3e9a150545712687eb546916e633\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Deploy receiver Sepolia)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Deploy receiver Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Deployed sender Avalanche Fuji)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Deployed sender Avalanche Fuji)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia send message)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia send message)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP deploy sender Avalanche Fuji)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP deploy sender Avalanche Fuji)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP deployed receiver Sepolia)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP deployed receiver Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can find the addresses for each network on the\\\"};duplicate=1\",\"expected\":\". You can find the addresses for each network on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is finalized on the source chain, it will take a few minutes for CCIP to deliver the data to Ethereum Sepolia and call the ccipReceive function on your receiver contract. You can use the\\\"};duplicate=1\",\"expected\":\"After the transaction is finalized on the source chain, it will take a few minutes for CCIP to deliver the data to Ethereum Sepolia and call the ccipReceive function on your receiver contract. You can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is successful, note the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"After the transaction is successful, note the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears as the second item in the Deployed Contracts list. Copy this contract address.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears as the second item in the Deployed Contracts list. Copy this contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy your contract address.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any string\\\"};duplicate=1\",\"expected\":\"Any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Click the transact button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button to run the function. MetaMask prompts you to confirm the transaction.\\\"};duplicate=1\",\"expected\":\"Click the transact button to run the function. MetaMask prompts you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compile the contract.\\\"};duplicate=1\",\"expected\":\"Compile the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the receiver contract on Ethereum Sepolia. You will use this contract to receive data from the sender that you deployed on Avalanche Fuji. To see a detailed explanation of this contract, read the\\\"};duplicate=1\",\"expected\":\"Deploy the receiver contract on Ethereum Sepolia. You will use this contract to receive data from the sender that you deployed on Avalanche Fuji. To see a detailed explanation of this contract, read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the receiver contract on Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Deploy the receiver contract on Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expand the sendMessage function and fill in the following arguments:\\\"};duplicate=1\",\"expected\":\"Expand the sendMessage function and fill in the following arguments:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=1\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix under the Deploy & Run Transactions tab, expand the first contract in the Deployed Contracts section.\\\"};duplicate=1\",\"expected\":\"In Remix under the Deploy & Run Transactions tab, expand the first contract in the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix under the Deploy & Run Transactions tab, make sure the Environment is still set to Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"In Remix under the Deploy & Run Transactions tab, make sure the Environment is still set to Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to the contract address that you copied. Your contract will pay CCIP fees in LINK.\\\"};duplicate=1\",\"expected\":\"LINK to the contract address that you copied. Your contract will pay CCIP fees in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Avalanche Fuji network.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the Avalanche Fuji network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Ethereum Sepolia network.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the Ethereum Sepolia network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and send\\\"};duplicate=1\",\"expected\":\"Open MetaMask and send\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Read data stored by the receiver contract on Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Read data stored by the receiver contract on Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send a Hello World! string from your contract on Avalanche Fuji to the contract you deployed on Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Send a Hello World! string from your contract on Avalanche Fuji to the contract you deployed on Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination smart contract address\\\"};duplicate=1\",\"expected\":\"The destination smart contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Deploy section, fill in the router address field. For Ethereum Sepolia, the Router address is\\\"};duplicate=1\",\"expected\":\"Under the Deploy section, fill in the router address field. For Ethereum Sepolia, the Router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value (Ethereum Sepolia)\\\"};duplicate=1\",\"expected\":\"Value (Ethereum Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When the status of the transaction is marked with a \\\\\\\"Success\\\\\\\" status, the CCIP transaction and the destination transaction are complete.\\\"};duplicate=1\",\"expected\":\"When the status of the transaction is marked with a \\\"Success\\\" status, the CCIP transaction and the destination transaction are complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You now have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. You sent 70 LINK to the sender contract to pay the CCIP fees. Next, send data from the sender contract to the receiver contract.\\\"};duplicate=1\",\"expected\":\"You now have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. You sent 70 LINK to the sender contract to pay the CCIP fees. Next, send data from the sender contract to the receiver contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your deployed contract address\\\"};duplicate=1\",\"expected\":\"Your deployed contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the LINK address is\\\"};duplicate=1\",\"expected\":\"and the LINK address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and use the transaction hash that you copied to search for your cross-chain transaction. The explorer provides several details about your request.\\\"};duplicate=1\",\"expected\":\"and use the transaction hash that you copied to search for your cross-chain transaction. The explorer provides several details about your request.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contract in Remix.\\\"};duplicate=1\",\"expected\":\"contract in Remix.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destinationChainSelector\\\"};duplicate=1\",\"expected\":\"destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a successful transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a successful transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. For Avalanche Fuji, the router address is\\\"};duplicate=1\",\"expected\":\"page. For Avalanche Fuji, the router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section.\\\"};duplicate=1\",\"expected\":\"section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"text\\\"};duplicate=1\",\"expected\":\"text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to see the status of your CCIP transaction and then read data stored by your receiver contract.\\\"};duplicate=1\",\"expected\":\"to see the status of your CCIP transaction and then read data stored by your receiver contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/getting-started/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/service-limits/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/service-limits/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/service-limits/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/service-limits/evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/service-responsibility\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Terms of Service\\\"};duplicate=1\",\"expected\":\"Chainlink Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/service-responsibility\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"ccip/test-tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Sepolia (native)\\\"};duplicate=1\",\"expected\":\"Ethereum Sepolia (native)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/test-tokens\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Other chains (wrapped as clCCIP-LnM)\\\"};duplicate=1\",\"expected\":\"Other chains (wrapped as clCCIP-LnM)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/test-tokens\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"MintTokenButton\\\",\\\"reason\\\":\\\"Unsupported MDX component MintTokenButton\\\"};duplicate=1\",\"component\":\"MintTokenButton\",\"reason\":\"Unsupported MDX component MintTokenButton\"}", + "{\"path\":\"ccip/test-tokens\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"SVMTestTokensClient\\\",\\\"reason\\\":\\\"Unsupported MDX component SVMTestTokensClient\\\"};duplicate=1\",\"component\":\"SVMTestTokensClient\",\"reason\":\"Unsupported MDX component SVMTestTokensClient\"}", + "{\"path\":\"ccip/test-tokens\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/arbitrary-messaging\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/prerequisites\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CcipCommon\\\",\\\"reason\\\":\\\"CcipCommon selector \\\\\\\"evmToAptosPrerequisites\\\\\\\" has no static MDX target in src/features/ccip/CcipCommon.astro\\\"};duplicate=1\",\"component\":\"CcipCommon\",\"reason\":\"CcipCommon selector \\\"evmToAptosPrerequisites\\\" has no static MDX target in src/features/ccip/CcipCommon.astro\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/aptos/destination/token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/aptos/receivers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/aptos/source/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/aptos/source/prerequisites\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/aptos/source/token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/canton/cross-chain-tokens/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/canton/cross-chain-tokens/burn-mint-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/canton/cross-chain-tokens/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/canton/cross-chain-tokens/lock-release-token-pool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"AdminSetupStep\\\",\\\"reason\\\":\\\"Unsupported MDX component AdminSetupStep\\\"};duplicate=1\",\"component\":\"AdminSetupStep\",\"reason\":\"Unsupported MDX component AdminSetupStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"AdminSetupStep\\\",\\\"reason\\\":\\\"Unsupported MDX component AdminSetupStep\\\"};duplicate=2\",\"component\":\"AdminSetupStep\",\"reason\":\"Unsupported MDX component AdminSetupStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainUpdateBuilderWrapper\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainUpdateBuilderWrapper\\\"};duplicate=1\",\"component\":\"ChainUpdateBuilderWrapper\",\"reason\":\"Unsupported MDX component ChainUpdateBuilderWrapper\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainUpdateBuilderWrapper\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainUpdateBuilderWrapper\\\"};duplicate=2\",\"component\":\"ChainUpdateBuilderWrapper\",\"reason\":\"Unsupported MDX component ChainUpdateBuilderWrapper\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ContractsImportCard\\\",\\\"reason\\\":\\\"Unsupported MDX component ContractsImportCard\\\"};duplicate=1\",\"component\":\"ContractsImportCard\",\"reason\":\"Unsupported MDX component ContractsImportCard\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DeployPoolStep\\\",\\\"reason\\\":\\\"Unsupported MDX component DeployPoolStep\\\"};duplicate=1\",\"component\":\"DeployPoolStep\",\"reason\":\"Unsupported MDX component DeployPoolStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DeployPoolStep\\\",\\\"reason\\\":\\\"Unsupported MDX component DeployPoolStep\\\"};duplicate=2\",\"component\":\"DeployPoolStep\",\"reason\":\"Unsupported MDX component DeployPoolStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DeployTokenStep\\\",\\\"reason\\\":\\\"Unsupported MDX component DeployTokenStep\\\"};duplicate=1\",\"component\":\"DeployTokenStep\",\"reason\":\"Unsupported MDX component DeployTokenStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DeployTokenStep\\\",\\\"reason\\\":\\\"Unsupported MDX component DeployTokenStep\\\"};duplicate=2\",\"component\":\"DeployTokenStep\",\"reason\":\"Unsupported MDX component DeployTokenStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"GrantPrivilegesStep\\\",\\\"reason\\\":\\\"Unsupported MDX component GrantPrivilegesStep\\\"};duplicate=1\",\"component\":\"GrantPrivilegesStep\",\"reason\":\"Unsupported MDX component GrantPrivilegesStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"GrantPrivilegesStep\\\",\\\"reason\\\":\\\"Unsupported MDX component GrantPrivilegesStep\\\"};duplicate=2\",\"component\":\"GrantPrivilegesStep\",\"reason\":\"Unsupported MDX component GrantPrivilegesStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"PoolConfigVerification\\\",\\\"reason\\\":\\\"Unsupported MDX component PoolConfigVerification\\\"};duplicate=1\",\"component\":\"PoolConfigVerification\",\"reason\":\"Unsupported MDX component PoolConfigVerification\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"PoolConfigVerification\\\",\\\"reason\\\":\\\"Unsupported MDX component PoolConfigVerification\\\"};duplicate=2\",\"component\":\"PoolConfigVerification\",\"reason\":\"Unsupported MDX component PoolConfigVerification\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"PrerequisitesCard\\\",\\\"reason\\\":\\\"Unsupported MDX component PrerequisitesCard\\\"};duplicate=1\",\"component\":\"PrerequisitesCard\",\"reason\":\"Unsupported MDX component PrerequisitesCard\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"SetPoolStep\\\",\\\"reason\\\":\\\"Unsupported MDX component SetPoolStep\\\"};duplicate=1\",\"component\":\"SetPoolStep\",\"reason\":\"Unsupported MDX component SetPoolStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"SetPoolStep\\\",\\\"reason\\\":\\\"Unsupported MDX component SetPoolStep\\\"};duplicate=2\",\"component\":\"SetPoolStep\",\"reason\":\"Unsupported MDX component SetPoolStep\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/register-from-eoa-remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TutorialBlockchainSelector\\\",\\\"reason\\\":\\\"Unsupported MDX component TutorialBlockchainSelector\\\"};duplicate=1\",\"component\":\"TutorialBlockchainSelector\",\"reason\":\"Unsupported MDX component TutorialBlockchainSelector\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"100 seconds\\\"};duplicate=1\",\"expected\":\"100 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"100 seconds\\\"};duplicate=2\",\"expected\":\"100 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"200 seconds\\\"};duplicate=1\",\"expected\":\"200 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"200 seconds\\\"};duplicate=2\",\"expected\":\"200 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": The RPC URL for the Arbitrum Sepolia testnet. You can get this from the\\\"};duplicate=1\",\"expected\":\": The RPC URL for the Arbitrum Sepolia testnet. You can get this from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": The RPC URL for the Fuji testnet. You can get this from the\\\"};duplicate=1\",\"expected\":\": The RPC URL for the Fuji testnet. You can get this from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": The private key for your testnet wallet, must begin with 0x. If you use MetaMask, you can follow this\\\"};duplicate=1\",\"expected\":\": The private key for your testnet wallet, must begin with 0x. If you use MetaMask, you can follow this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Capacity / Rate = 10 / 0.1 = 100 seconds\\\"};duplicate=1\",\"expected\":\"Capacity / Rate = 10 / 0.1 = 100 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Capacity / Rate = 10 / 0.1 = 100 seconds\\\"};duplicate=2\",\"expected\":\"Capacity / Rate = 10 / 0.1 = 100 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Capacity / Rate = 20 / 0.1 = 200 seconds\\\"};duplicate=1\",\"expected\":\"Capacity / Rate = 20 / 0.1 = 200 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Capacity / Rate = 20 / 0.1 = 200 seconds\\\"};duplicate=2\",\"expected\":\"Capacity / Rate = 20 / 0.1 = 200 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PRIVATE_KEY\\\"};duplicate=1\",\"expected\":\"PRIVATE_KEY\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RPC_URL_ARBITRUM_SEPOLIA\\\"};duplicate=1\",\"expected\":\"RPC_URL_ARBITRUM_SEPOLIA\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RPC_URL_FUJI\\\"};duplicate=1\",\"expected\":\"RPC_URL_FUJI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-foundry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": A URL for the Avalanche Fuji testnet. You can get a personal endpoint from services like\\\"};duplicate=1\",\"expected\":\": A URL for the Avalanche Fuji testnet. You can get a personal endpoint from services like\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": A URL for the Ethereum Sepolia testnet. You can get a personal endpoint from services like\\\"};duplicate=1\",\"expected\":\": A URL for the Ethereum Sepolia testnet. You can get a personal endpoint from services like\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": The private key for your testnet wallet. If you use MetaMask, you can follow this\\\"};duplicate=1\",\"expected\":\": The private key for your testnet wallet. If you use MetaMask, you can follow this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AVALANCHE_FUJI_RPC_URL\\\"};duplicate=1\",\"expected\":\"AVALANCHE_FUJI_RPC_URL\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ETHEREUM_SEPOLIA_RPC_URL\\\"};duplicate=1\",\"expected\":\"ETHEREUM_SEPOLIA_RPC_URL\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/cross-chain-tokens/update-rate-limiters-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PRIVATE_KEY\\\"};duplicate=1\",\"expected\":\"PRIVATE_KEY\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Client.EVMExtraArgsV2({ gasLimit: 20_000 allowOutOfOrderExecution: true })\\\"};duplicate=1\",\"expected\":\"Client.EVMExtraArgsV2({ gasLimit: 20_000 allowOutOfOrderExecution: true })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Investigate the root cause of receiver contract execution failure\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Investigate the root cause of receiver contract execution failure\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Manual execution\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Manual execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transfer and Receive tokens and data and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transfer and Receive tokens and data and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Trigger manual execution\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Trigger manual execution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=3\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=4\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=2\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK token contracts page\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK token contracts page -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Tenderly\\\",\\\"url\\\":\\\"https://tenderly.co/\\\"};duplicate=1\",\"expected\":\"Tenderly -> https://tenderly.co/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Tenderly\\\",\\\"url\\\":\\\"https://tenderly.co/\\\"};duplicate=2\",\"expected\":\"Tenderly -> https://tenderly.co/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Transfer Tokens with Data\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/programmable-token-transfers#explanation\\\"};duplicate=1\",\"expected\":\"Transfer Tokens with Data -> /ccip/tutorials/evm/programmable-token-transfers#explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0xfb7e1eea5335c018589166b1ac597b618a92899d99ec4d1b1079e147cde81d9b\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0xfb7e1eea5335c018589166b1ac597b618a92899d99ec4d1b1079e147cde81d9b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details ready for manual execution)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details ready for manual execution)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia - override gas limit - confirmation screen)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia - override gas limit - confirmation screen)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia - override gas limit - success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia - override gas limit - success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia - override gas limit)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia - override gas limit)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia message details - success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia message details - success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia message details empty)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia message details empty)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia open in Tenderly)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia open in Tenderly)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia open in Tenderly)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Sepolia open in Tenderly)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and click on Trigger Manual Execution.\\\"};duplicate=1\",\"expected\":\", and click on Trigger Manual Execution.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", connect your wallet, set the Gas limit override to\\\"};duplicate=1\",\"expected\":\", connect your wallet, set the Gas limit override to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=2\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". For Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\". For Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Tenderly can provide detailed insights into the transaction processes, helping to pinpoint the exact cause of the failure.\\\"};duplicate=1\",\"expected\":\". Tenderly can provide detailed insights into the transaction processes, helping to pinpoint the exact cause of the failure.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0.002\\\"};duplicate=1\",\"expected\":\"0.002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\\\"};duplicate=1\",\"expected\":\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000\\\"};duplicate=1\",\"expected\":\"1000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"200000\\\"};duplicate=1\",\"expected\":\"200000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A key distinction in this tutorial is the intentional setup of a low gas limit of 20,000 for building the CCIP message. This specific gas limit setting is expected to fail the message delivery on the receiver contract in the destination chain:\\\"};duplicate=1\",\"expected\":\"A key distinction in this tutorial is the intentional setup of a low gas limit of 20,000 for building the CCIP message. This specific gas limit setting is expected to fail the message delivery on the receiver contract in the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Advanced Investigation Tool: For a comprehensive analysis, employ a sophisticated tool like\\\"};duplicate=1\",\"expected\":\"Advanced Investigation Tool: For a comprehensive analysis, employ a sophisticated tool like\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After a few minutes, the status will be updated to Ready for manual execution indicating that CCIP could not successfully deliver the message due to the initial low gas limit. At this stage, you have the option to override the gas limit.\\\"};duplicate=1\",\"expected\":\"After a few minutes, the status will be updated to Ready for manual execution indicating that CCIP could not successfully deliver the message due to the initial low gas limit. At this stage, you have the option to override the gas limit.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is successful, record the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"After the transaction is successful, record the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction on Metamask, the CCIP explorer shows you a confirmation screen.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction on Metamask, the CCIP explorer shows you a confirmation screen.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any string\\\"};duplicate=1\",\"expected\":\"Any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender and Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender and Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP-BnM to your contract.\\\"};duplicate=1\",\"expected\":\"CCIP-BnM to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistDestinationChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistDestinationChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\\\"};duplicate=1\",\"expected\":\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSourceChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistSourceChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getLastReceivedMessageDetails function.\\\"};duplicate=1\",\"expected\":\"Call the getLastReceivedMessageDetails function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getLastReceivedMessageDetails function.\\\"};duplicate=2\",\"expected\":\"Call the getLastReceivedMessageDetails function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver contract on the destination chain:\\\"};duplicate=1\",\"expected\":\"Check the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on the Close button and observe the status marked as Success.\\\"};duplicate=1\",\"expected\":\"Click on the Close button and observe the status marked as Success.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=1\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\\\"};duplicate=1\",\"expected\":\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy the destination transaction hash from the CCIP explorer. In this example, the destination transaction hash is 0x9f5b50460a1ab551add15dc4b743c81df992e34bc8140bbbdc033de7043140f5.\\\"};duplicate=1\",\"expected\":\"Copy the destination transaction hash from the CCIP explorer. In this example, the destination transaction hash is 0x9f5b50460a1ab551add15dc4b743c81df992e34bc8140bbbdc033de7043140f5.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\\\"};duplicate=1\",\"expected\":\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable Full Trace then click on Reverts.\\\"};duplicate=1\",\"expected\":\"Enable Full Trace then click on Reverts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to send CCIP messages to Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Enable your contract to send CCIP messages to Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Error analysis: Examine the error description in the CCIP explorer. An error labeled ReceiverError. This may be due to an out of gas error on the destination chain. Error code: 0x, often indicates a low gas issue.\\\"};duplicate=1\",\"expected\":\"Error analysis: Examine the error description in the CCIP explorer. An error labeled ReceiverError. This may be due to an out of gas error on the destination chain. Error code: 0x, often indicates a low gas issue.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayLINK function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in your blockchain's router and LINK contract addresses. The router address can be found on the\\\"};duplicate=1\",\"expected\":\"Fill in your blockchain's router and LINK contract addresses. The router address can be found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=1\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=3\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=4\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the\\\"};duplicate=1\",\"expected\":\"In the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens and data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens and data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the out of gas error in the receiver contract. In this example, the receiver contract is 0x47EAa31C9e2B1B1Ba19824BedcbE0014c15df15e.\\\"};duplicate=1\",\"expected\":\"Notice the out of gas error in the receiver contract. In this example, the receiver contract is 0x47EAa31C9e2B1B1Ba19824BedcbE0014c15df15e.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the received messageId is 0xf8dc098c832332ac59ccc73ee00b480975d8f122a2265c90a1ccc2cd52268770, the received text is Hello World!, the token address is 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05 (CCIP-BnM token address on Ethereum Sepolia) and the token amount is 1000000000000000 (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"Notice the received messageId is 0xf8dc098c832332ac59ccc73ee00b480975d8f122a2265c90a1ccc2cd52268770, the received text is Hello World!, the token address is 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05 (CCIP-BnM token address on Ethereum Sepolia) and the token amount is 1000000000000000 (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Observe that the returned data is empty: the received messageId is 0x0000000000000000000000000000000000000000000000000000000000000000, indicating no message was received. Additionally, the received text field is empty, the token address is the default 0x0000000000000000000000000000000000000000, and the token amount shows as 0.\\\"};duplicate=1\",\"expected\":\"Observe that the returned data is empty: the received messageId is 0x0000000000000000000000000000000000000000000000000000000000000000, indicating no message was received. Additionally, the received text field is empty, the token address is the default 0x0000000000000000000000000000000000000000, and the token amount shows as 0.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and fund your contract with LINK tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and fund your contract with LINK tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open Tenderly and search for your transaction. You should see an interface similar to the following:\\\"};duplicate=1\",\"expected\":\"Open Tenderly and search for your transaction. You should see an interface similar to the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send a string data with tokens from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Send a string data with tokens from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\\\"};duplicate=1\",\"expected\":\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=1\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=2\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination contract address.\\\"};duplicate=1\",\"expected\":\"The destination contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=1\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=2\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contract used in this tutorial is configured to use CCIP for transferring and receiving tokens with data, similar to the contract in the\\\"};duplicate=1\",\"expected\":\"The smart contract used in this tutorial is configured to use CCIP for transferring and receiving tokens with data, similar to the contract in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"The token amount (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To determine if a low gas limit is causing the failure in the receiver contract's execution, consider the following methods:\\\"};duplicate=1\",\"expected\":\"To determine if a low gas limit is causing the failure in the receiver contract's execution, consider the following methods:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To use\\\"};duplicate=1\",\"expected\":\"To use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=1\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can also confirm that the CCIP message was not delivered to the receiver contract on the destination chain:\\\"};duplicate=1\",\"expected\":\"You can also confirm that the CCIP message was not delivered to the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will increase the gas limit and trigger manual execution:\\\"};duplicate=1\",\"expected\":\"You will increase the gas limit and trigger manual execution:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in LINK.\\\"};duplicate=1\",\"expected\":\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your receiver contract address at Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Your receiver contract address at Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=1\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=1\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=1\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_text\\\"};duplicate=1\",\"expected\":\"_text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_token\\\"};duplicate=1\",\"expected\":\"_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash. Note that the Gas Limit is 20000. In this example, the CCIP message ID is 0xf8dc098c832332ac59ccc73ee00b480975d8f122a2265c90a1ccc2cd52268770.\\\"};duplicate=1\",\"expected\":\"and search your cross-chain transaction using the transaction hash. Note that the Gas Limit is 20000. In this example, the CCIP message ID is 0xf8dc098c832332ac59ccc73ee00b480975d8f122a2265c90a1ccc2cd52268770.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the LINK contract address on the\\\"};duplicate=1\",\"expected\":\"and the LINK contract address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=1\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=2\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed.\\\"};duplicate=1\",\"expected\":\"as allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the destination chain selector, and\\\"};duplicate=1\",\"expected\":\"as the destination chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the source chain selector, and\\\"};duplicate=1\",\"expected\":\"as the source chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section of that tutorial.\\\"};duplicate=1\",\"expected\":\"section of that tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=2\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=3\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/manual-execution\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Initializing the contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Initializing the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Receiving messages\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Receiving messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transfer and Receive tokens and data and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transfer and Receive tokens and data and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transfer and Receive tokens and data and pay in native\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transfer and Receive tokens and data and pay in native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transferring tokens and data and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transferring tokens and data and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transferring tokens and data and pay in native\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transferring tokens and data and pay in native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ABI specifications\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\\\"};duplicate=1\",\"expected\":\"ABI specifications -> https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ABI specifications\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\\\"};duplicate=2\",\"expected\":\"ABI specifications -> https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=2\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=2\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=3\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=4\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=5\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=2\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=2\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIPReceiver\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/ccip-receiver\\\"};duplicate=1\",\"expected\":\"CCIPReceiver -> /ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=2\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK token contracts page\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK token contracts page -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=1\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=2\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=3\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=4\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=2\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x8101fef78288981813915e77f8e5746bdba69711bdb7bc1706944a67ac70854b\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x8101fef78288981813915e77f8e5746bdba69711bdb7bc1706944a67ac70854b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0xd3a0fade0e143fb39964c764bd4803e40062ba8c88e129f44ee795e33ade464b\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0xd3a0fade0e143fb39964c764bd4803e40062ba8c88e129f44ee795e33ade464b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#explanation\\\"};duplicate=1\",\"expected\":\"explanation -> #explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#transferring-tokens-and-data-and-pay-in-link\\\"};duplicate=1\",\"expected\":\"explanation -> #transferring-tokens-and-data-and-pay-in-link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#transferring-tokens-and-data-and-pay-in-native\\\"};duplicate=1\",\"expected\":\"explanation -> #transferring-tokens-and-data-and-pay-in-native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=2\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/ccip-receiver#_ccipreceive\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/ccip-receiver#_ccipreceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/ccip-receiver#ccipreceive\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/ccip-receiver#ccipreceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\\\"};duplicate=2\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#getfee\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#getfee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#getfee\\\"};duplicate=2\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#getfee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#any2evmmessage\\\"};duplicate=1\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#any2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#any2evmmessage\\\"};duplicate=2\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#any2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#any2evmmessage\\\"};duplicate=3\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#any2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#evmtokenamount\\\"};duplicate=1\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#evmtokenamount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#evmtokenamount\\\"};duplicate=2\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#evmtokenamount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia message details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia message details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia message details)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Sepolia message details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=2\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", which ensures that only the router can deliver CCIP messages to the receiver contract.\\\"};duplicate=1\",\"expected\":\", which ensures that only the router can deliver CCIP messages to the receiver contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", which serves as a base contract for receiver contracts. This contract requires that child contracts implement the _ccipReceive\\\"};duplicate=1\",\"expected\":\", which serves as a base contract for receiver contracts. This contract requires that child contracts implement the _ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Each chain selector is found on the\\\"};duplicate=1\",\"expected\":\". Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". For Ethereum Sepolia, the router address is\\\"};duplicate=1\",\"expected\":\". For Ethereum Sepolia, the router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=2\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Note: msg.value is set because you pay in native gas.\\\"};duplicate=1\",\"expected\":\". Note: msg.value is set because you pay in native gas.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". _ccipReceive is called by the ccipReceive\\\"};duplicate=1\",\"expected\":\". _ccipReceive is called by the ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=10\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=11\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=5\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=6\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=7\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=8\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=9\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0.002\\\"};duplicate=1\",\"expected\":\"0.002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0.2\\\"};duplicate=1\",\"expected\":\"0.2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\\\"};duplicate=1\",\"expected\":\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\\\"};duplicate=2\",\"expected\":\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000\\\"};duplicate=1\",\"expected\":\"1000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000\\\"};duplicate=2\",\"expected\":\"1000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=3\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=2\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AVAX to your contract. The native gas tokens are used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"AVAX to your contract. The native gas tokens are used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is successful, record the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"After the transaction is successful, record the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any string\\\"};duplicate=1\",\"expected\":\"Any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any string\\\"};duplicate=2\",\"expected\":\"Any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=2\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=2\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=2\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP-BnM to your contract.\\\"};duplicate=1\",\"expected\":\"CCIP-BnM to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\\\"};duplicate=2\",\"expected\":\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistDestinationChain, setting the destination chain selector to\\\"};duplicate=1\",\"expected\":\"Call the allowlistDestinationChain, setting the destination chain selector to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\\\"};duplicate=1\",\"expected\":\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSourceChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistSourceChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getLastReceivedMessageDetails function.\\\"};duplicate=1\",\"expected\":\"Call the getLastReceivedMessageDetails function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getLastReceivedMessageDetails function.\\\"};duplicate=2\",\"expected\":\"Call the getLastReceivedMessageDetails function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the router's ccipSend\\\"};duplicate=1\",\"expected\":\"Calls the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the router's getFee\\\"};duplicate=1\",\"expected\":\"Calls the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver contract on the destination chain:\\\"};duplicate=1\",\"expected\":\"Check the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver contract on the destination chain:\\\"};duplicate=2\",\"expected\":\"Check the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=1\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=2\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\\\"};duplicate=1\",\"expected\":\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the fees by invoking the router's getFee\\\"};duplicate=1\",\"expected\":\"Computes the fees by invoking the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the fees by invoking the router's getFee\\\"};duplicate=2\",\"expected\":\"Computes the fees by invoking the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\\\"};duplicate=1\",\"expected\":\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\\\"};duplicate=1\",\"expected\":\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\\\"};duplicate=2\",\"expected\":\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=2\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to send CCIP messages to Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Enable your contract to send CCIP messages to Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures your contract balance in LINK is enough to cover the fees.\\\"};duplicate=1\",\"expected\":\"Ensures your contract balance in LINK is enough to cover the fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures your contract balance in native gas is enough to cover the fees.\\\"};duplicate=1\",\"expected\":\"Ensures your contract balance in native gas is enough to cover the fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayLINK function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayNative function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayNative function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in your blockchain's router and LINK contract addresses. The router address can be found on the\\\"};duplicate=1\",\"expected\":\"Fill in your blockchain's router and LINK contract addresses. The router address can be found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=1\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=2\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Grants the router contract permission to deduct the amount from the contract's CCIP-BnM balance.\\\"};duplicate=1\",\"expected\":\"Grants the router contract permission to deduct the amount from the contract's CCIP-BnM balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Grants the router contract permission to deduct the amount from the contract's CCIP-BnM balance.\\\"};duplicate=2\",\"expected\":\"Grants the router contract permission to deduct the amount from the contract's CCIP-BnM balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Grants the router contract permission to deduct the fees from the contract's LINK balance.\\\"};duplicate=1\",\"expected\":\"Grants the router contract permission to deduct the fees from the contract's LINK balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=1\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=2\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=3\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=2\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: Another security measure enforces that only the router can call the _ccipReceive function. Read the\\\"};duplicate=1\",\"expected\":\"Note: Another security measure enforces that only the router can call the _ccipReceive function. Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: As a security measure, the sendMessagePayLINK function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\\\"};duplicate=1\",\"expected\":\"Note: As a security measure, the sendMessagePayLINK function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: As a security measure, the sendMessagePayNative function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\\\"};duplicate=1\",\"expected\":\"Note: As a security measure, the sendMessagePayNative function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens with data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens with data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens with data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens with data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: Three important security measures are applied:\\\"};duplicate=1\",\"expected\":\"Note: Three important security measures are applied:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the received messageId is 0x32bf96ac8b01fe3f04ffa548a3403b3105b4ed479eff407ff763b7539a1d43bd, the received text is Hello World!, the token address is 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05 (CCIP-BnM token address on Ethereum Sepolia) and the token amount is 1000000000000000 (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"Notice the received messageId is 0x32bf96ac8b01fe3f04ffa548a3403b3105b4ed479eff407ff763b7539a1d43bd, the received text is Hello World!, the token address is 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05 (CCIP-BnM token address on Ethereum Sepolia) and the token amount is 1000000000000000 (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the received messageId is 0x99a15381125e740c43a60f03c6b011ae05a3541998ca482fb5a4814417627df8, the received text is Hello World!, the token address is 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05 (CCIP-BnM token address on Ethereum Sepolia) and the token amount is 1000000000000000 (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"Notice the received messageId is 0x99a15381125e740c43a60f03c6b011ae05a3541998ca482fb5a4814417627df8, the received text is Hello World!, the token address is 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05 (CCIP-BnM token address on Ethereum Sepolia) and the token amount is 1000000000000000 (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the destination blockchain, the router invokes the _ccipReceive\\\"};duplicate=1\",\"expected\":\"On the destination blockchain, the router invokes the _ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Once the transaction is successful, note the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"Once the transaction is successful, note the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with AVAX tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with AVAX tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=2\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver part:\\\"};duplicate=1\",\"expected\":\"Receiver part:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send a string data with tokens from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Send a string data with tokens from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send a string data with tokens from Avalanche Fuji:\\\"};duplicate=2\",\"expected\":\"Send a string data with tokens from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender part:\\\"};duplicate=1\",\"expected\":\"Sender part:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP messageId.\\\"};duplicate=1\",\"expected\":\"The CCIP messageId.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". In this example, the CCIP message ID is 0x32bf96ac8b01fe3f04ffa548a3403b3105b4ed479eff407ff763b7539a1d43bd. Note that CCIP fees are denominated in LINK. Even if CCIP fees are paid using native gas tokens, node operators will be paid in LINK.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". In this example, the CCIP message ID is 0x32bf96ac8b01fe3f04ffa548a3403b3105b4ed479eff407ff763b7539a1d43bd. Note that CCIP fees are denominated in LINK. Even if CCIP fees are paid using native gas tokens, node operators will be paid in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". In this example, the CCIP message ID is 0x99a15381125e740c43a60f03c6b011ae05a3541998ca482fb5a4814417627df8.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". In this example, the CCIP message ID is 0x99a15381125e740c43a60f03c6b011ae05a3541998ca482fb5a4814417627df8.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\\\"};duplicate=1\",\"expected\":\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\\\"};duplicate=2\",\"expected\":\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=1\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(0) signifies payment in native gas tokens (ETH).\\\"};duplicate=1\",\"expected\":\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(0) signifies payment in native gas tokens (ETH).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(linkToken) signifies payment in LINK.\\\"};duplicate=1\",\"expected\":\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(linkToken) signifies payment in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\\\"};duplicate=1\",\"expected\":\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\\\"};duplicate=2\",\"expected\":\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract inherits from\\\"};duplicate=1\",\"expected\":\"The contract inherits from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data is encoded from a string to bytes using\\\"};duplicate=1\",\"expected\":\"The data is encoded from a string to bytes using\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data is encoded from a string to bytes using\\\"};duplicate=2\",\"expected\":\"The data is encoded from a string to bytes using\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data, which is also in bytes format. Given a string is expected, the data is decoded from bytes to a string using the\\\"};duplicate=1\",\"expected\":\"The data, which is also in bytes format. Given a string is expected, the data is decoded from bytes to a string using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination contract address.\\\"};duplicate=1\",\"expected\":\"The destination contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination contract address.\\\"};duplicate=2\",\"expected\":\"The destination contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to `200000.\\\"};duplicate=1\",\"expected\":\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to `200000.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to `200000.\\\"};duplicate=2\",\"expected\":\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to `200000.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=1\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sendMessagePayLINK function undertakes six primary operations:\\\"};duplicate=1\",\"expected\":\"The sendMessagePayLINK function undertakes six primary operations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sendMessagePayNative function undertakes five primary operations:\\\"};duplicate=1\",\"expected\":\"The sendMessagePayNative function undertakes five primary operations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sender address in bytes format. Given that the sender is known to be a contract deployed on an EVM-compatible blockchain, the address is decoded from bytes to an Ethereum address using the\\\"};duplicate=1\",\"expected\":\"The sender address in bytes format. Given that the sender is known to be a contract deployed on an EVM-compatible blockchain, the address is decoded from bytes to an Ethereum address using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contract featured in this tutorial is designed to interact with CCIP to transfer and receive tokens and data. The contract code contains supporting comments clarifying the functions, events, and underlying logic. Here we will further explain initializing the contract and sending data with tokens.\\\"};duplicate=1\",\"expected\":\"The smart contract featured in this tutorial is designed to interact with CCIP to transfer and receive tokens and data. The contract code contains supporting comments clarifying the functions, events, and underlying logic. Here we will further explain initializing the contract and sending data with tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sourceChainSelector.\\\"};duplicate=1\",\"expected\":\"The sourceChainSelector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"The token amount (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (0.001 CCIP-BnM).\\\"};duplicate=2\",\"expected\":\"The token amount (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an array containing received tokens and their respective amounts. Given that only one token transfer is expected, the first element of the array is extracted.\\\"};duplicate=1\",\"expected\":\"The tokenAmounts is an array containing received tokens and their respective amounts. Given that only one token transfer is expected, the first element of the array is extracted.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an array, with each element comprising an EVMTokenAmount\\\"};duplicate=1\",\"expected\":\"The tokenAmounts is an array, with each element comprising an EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an array, with each element comprising an EVMTokenAmount\\\"};duplicate=2\",\"expected\":\"The tokenAmounts is an array, with each element comprising an EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=2\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=2\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=2\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=2\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=2\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=1\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=2\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When deploying the contract, we define the router address and LINK contract address of the blockchain we deploy the contract on. Defining the router address is useful for the following:\\\"};duplicate=1\",\"expected\":\"When deploying the contract, we define the router address and LINK contract address of the blockchain we deploy the contract on. Defining the router address is useful for the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in Avalanche's native AVAX. Read this\\\"};duplicate=1\",\"expected\":\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in Avalanche's native AVAX. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in LINK. Read this\\\"};duplicate=1\",\"expected\":\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in LINK. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your receiver contract address at Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Your receiver contract address at Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your receiver contract address on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Your receiver contract address on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=1\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=2\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_ccipReceive is called by the ccipReceive\\\"};duplicate=1\",\"expected\":\"_ccipReceive is called by the ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=1\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=2\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=1\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=2\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_text\\\"};duplicate=1\",\"expected\":\"_text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_text\\\"};duplicate=2\",\"expected\":\"_text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_token\\\"};duplicate=1\",\"expected\":\"_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_token\\\"};duplicate=2\",\"expected\":\"_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=1\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=2\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and setting allowed to\\\"};duplicate=1\",\"expected\":\"and setting allowed to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the LINK contract address is\\\"};duplicate=1\",\"expected\":\"and the LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the LINK contract address on the\\\"};duplicate=1\",\"expected\":\"and the LINK contract address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=1\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed.\\\"};duplicate=1\",\"expected\":\"as allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the source chain selector, and\\\"};duplicate=1\",\"expected\":\"as the source chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"containing the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the sendMessagePayLINK function.\\\"};duplicate=1\",\"expected\":\"containing the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the sendMessagePayLINK function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"containing the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the sendMessagePayNative function.\\\"};duplicate=1\",\"expected\":\"containing the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the sendMessagePayNative function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a detailed description of the code example.\\\"};duplicate=1\",\"expected\":\"for a detailed description of the code example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a detailed description of the code example.\\\"};duplicate=2\",\"expected\":\"for a detailed description of the code example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=2\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=2\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section for more details.\\\"};duplicate=1\",\"expected\":\"section for more details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that contains:\\\"};duplicate=1\",\"expected\":\"that contains:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to estimate the CCIP fees.\\\"};duplicate=1\",\"expected\":\"to estimate the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=2\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to send CCIP messages.\\\"};duplicate=1\",\"expected\":\"to send CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=2\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=3\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"which expects a Any2EVMMessage\\\"};duplicate=1\",\"expected\":\"which expects a Any2EVMMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=16\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=17\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=18\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Recover the locked tokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Recover the locked tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sending messages\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Sending messages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=3\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=4\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK token contracts page\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK token contracts page -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Transfer Tokens with Data\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/programmable-token-transfers\\\"};duplicate=1\",\"expected\":\"Transfer Tokens with Data -> /ccip/tutorials/evm/programmable-token-transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"code explanation\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/programmable-token-transfers#explanation\\\"};duplicate=1\",\"expected\":\"code explanation -> /ccip/tutorials/evm/programmable-token-transfers#explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x4c7a192fa5636557569d076c06633c4f06140f117a44b49f21628eedd72b8423\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x4c7a192fa5636557569d076c06633c4f06140f117a44b49f21628eedd72b8423\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#explanation\\\"};duplicate=1\",\"expected\":\"explanation -> #explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#explanation\\\"};duplicate=2\",\"expected\":\"explanation -> #explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Fuji last failed message ids)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Fuji last failed message ids)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia retry failed message id)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia retry failed message id)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP retry failed message - tokens transferred - recovered)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP retry failed message - tokens transferred - recovered)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP retry failed message - tokens transferred)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP retry failed message - tokens transferred)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=2\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". For Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\". For Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". We will only explain the main differences.\\\"};duplicate=1\",\"expected\":\". We will only explain the main differences.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0.002\\\"};duplicate=1\",\"expected\":\"0.002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0\\\"};duplicate=1\",\"expected\":\"0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0\\\"};duplicate=2\",\"expected\":\"0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\\\"};duplicate=1\",\"expected\":\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000\\\"};duplicate=1\",\"expected\":\"1000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=2\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After confirming the transaction, you can open it in a block explorer. Notice that the locked funds were transferred to the tokenReceiver address.\\\"};duplicate=1\",\"expected\":\"After confirming the transaction, you can open it in a block explorer. Notice that the locked funds were transferred to the tokenReceiver address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is successful, record the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"After the transaction is successful, record the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any string\\\"};duplicate=1\",\"expected\":\"Any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=2\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender on Avalanche Fuji. The receiver contract cannot process the message, and therefore, instead of throwing an exception, it will lock the received tokens, enabling the owner to recover them.\\\"};duplicate=1\",\"expected\":\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender on Avalanche Fuji. The receiver contract cannot process the message, and therefore, instead of throwing an exception, it will lock the received tokens, enabling the owner to recover them.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP-BnM to your contract.\\\"};duplicate=1\",\"expected\":\"CCIP-BnM to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call again the getFailedMessages function with an offset of\\\"};duplicate=1\",\"expected\":\"Call again the getFailedMessages function with an offset of\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistDestinationChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistDestinationChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\\\"};duplicate=1\",\"expected\":\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSourceChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistSourceChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getFailedMessages function with an offset of\\\"};duplicate=1\",\"expected\":\"Call the getFailedMessages function with an offset of\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the setSimRevert function, passing true as a parameter, then wait for the transaction to confirm. Setting s_simRevert to true simulates a failure when processing the received message. Read the\\\"};duplicate=1\",\"expected\":\"Call the setSimRevert function, passing true as a parameter, then wait for the transaction to confirm. Setting s_simRevert to true simulates a failure when processing the received message. Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver contract on the destination chain:\\\"};duplicate=1\",\"expected\":\"Check the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=1\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\\\"};duplicate=1\",\"expected\":\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\\\"};duplicate=1\",\"expected\":\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to send CCIP messages to Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Enable your contract to send CCIP messages to Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayLINK function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in your blockchain's router and LINK contract addresses. The router address can be found on the\\\"};duplicate=1\",\"expected\":\"Fill in your blockchain's router and LINK contract addresses. The router address can be found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=1\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=1\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=3\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: Another security measure enforces that only the router can call the _ccipReceive function. Read the\\\"};duplicate=1\",\"expected\":\"Note: Another security measure enforces that only the router can call the _ccipReceive function. Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens with data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to transfer tokens with data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the returned values are: 0x120367995ef71f83d64a05bd7793862afda9d04049da4cb32851934490d03ae4 (the message ID) and 1 (the error code indicating failure).\\\"};duplicate=1\",\"expected\":\"Notice the returned values are: 0x120367995ef71f83d64a05bd7793862afda9d04049da4cb32851934490d03ae4 (the message ID) and 1 (the error code indicating failure).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send a string data with tokens from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Send a string data with tokens from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". In this example, the CCIP message ID is 0x120367995ef71f83d64a05bd7793862afda9d04049da4cb32851934490d03ae4.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". In this example, the CCIP message ID is 0x120367995ef71f83d64a05bd7793862afda9d04049da4cb32851934490d03ae4.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\\\"};duplicate=1\",\"expected\":\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=1\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=2\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to which the tokens will be sent.\\\"};duplicate=1\",\"expected\":\"The address to which the tokens will be sent.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination contract address.\\\"};duplicate=1\",\"expected\":\"The destination contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=1\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=2\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sendMessagePayLINK function is similar to the sendMessagePayLINK function in the\\\"};duplicate=1\",\"expected\":\"The sendMessagePayLINK function is similar to the sendMessagePayLINK function in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contract featured in this tutorial is designed to interact with CCIP to transfer and receive tokens and data. The contract code is similar to the\\\"};duplicate=1\",\"expected\":\"The smart contract featured in this tutorial is designed to interact with CCIP to transfer and receive tokens and data. The contract code is similar to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"The token amount (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique identifier of the failed message.\\\"};duplicate=1\",\"expected\":\"The unique identifier of the failed message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To recover the locked tokens, call the retryFailedMessage function:\\\"};duplicate=1\",\"expected\":\"To recover the locked tokens, call the retryFailedMessage function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=1\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in LINK.\\\"};duplicate=1\",\"expected\":\"You will transfer 0.001 CCIP-BnM and a text. The CCIP fees for using CCIP will be paid in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your receiver contract address at Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Your receiver contract address at Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=1\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=1\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=1\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_text\\\"};duplicate=1\",\"expected\":\"_text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_token\\\"};duplicate=1\",\"expected\":\"_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and a limit of\\\"};duplicate=1\",\"expected\":\"and a limit of\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and a limit of\\\"};duplicate=2\",\"expected\":\"and a limit of\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=1\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the LINK contract address on the\\\"};duplicate=1\",\"expected\":\"and the LINK contract address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=1\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=2\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed.\\\"};duplicate=1\",\"expected\":\"as allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the destination chain selector, and\\\"};duplicate=1\",\"expected\":\"as the destination chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the source chain selector, and\\\"};duplicate=1\",\"expected\":\"as the source chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"messageId\\\"};duplicate=1\",\"expected\":\"messageId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section for more details.\\\"};duplicate=1\",\"expected\":\"section for more details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section for more details.\\\"};duplicate=2\",\"expected\":\"section for more details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to retrieve the first failed message. Notice that the error code is now 0, indicating that the message was resolved.\\\"};duplicate=1\",\"expected\":\"to retrieve the first failed message. Notice that the error code is now 0, indicating that the message was resolved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to retrieve the first failed message.\\\"};duplicate=1\",\"expected\":\"to retrieve the first failed message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenReceiver\\\"};duplicate=1\",\"expected\":\"tokenReceiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=2\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=3\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tutorial. Hence, you can refer to its\\\"};duplicate=1\",\"expected\":\"tutorial. Hence, you can refer to its\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/programmable-token-transfers-defensive\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Initializing of the contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Initializing of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Receiving data\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Receiving data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Send data and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Send data and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Send data and pay in native\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Send data and pay in native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sending data and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Sending data and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sending data and pay in native\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Sending data and pay in native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ABI specifications\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\\\"};duplicate=1\",\"expected\":\"ABI specifications -> https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ABI specifications\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\\\"};duplicate=2\",\"expected\":\"ABI specifications -> https://docs.soliditylang.org/en/v0.8.20/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=2\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=2\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=3\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=4\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=2\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=2\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIPReceiver\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/ccip-receiver\\\"};duplicate=1\",\"expected\":\"CCIPReceiver -> /ccip/api-reference/evm/v1.6.1/ccip-receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=2\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK token contracts page\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK token contracts page -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=1\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=2\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=3\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=4\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=2\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x233d2d882e6cfe736c982d58a33021d2f4f6b96e0cfd2c7a874cf2eb63790aa1\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x233d2d882e6cfe736c982d58a33021d2f4f6b96e0cfd2c7a874cf2eb63790aa1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x5cb5ea9b1631f62148105d67b780b56fce66db398667276ea498104b7896ffee\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x5cb5ea9b1631f62148105d67b780b56fce66db398667276ea498104b7896ffee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#explanation\\\"};duplicate=1\",\"expected\":\"explanation -> #explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#sending-data-and-pay-in-link\\\"};duplicate=1\",\"expected\":\"explanation -> #sending-data-and-pay-in-link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#sending-data-and-pay-in-native\\\"};duplicate=1\",\"expected\":\"explanation -> #sending-data-and-pay-in-native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=2\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/ccip-receiver#_ccipreceive\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/ccip-receiver#_ccipreceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/ccip-receiver#ccipreceive\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/ccip-receiver#ccipreceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\\\"};duplicate=2\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#getfee\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#getfee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#getfee\\\"};duplicate=2\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#getfee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#any2evmmessage\\\"};duplicate=1\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#any2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#any2evmmessage\\\"};duplicate=2\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#any2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#evmtokenamount\\\"};duplicate=1\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#evmtokenamount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#evmtokenamount\\\"};duplicate=2\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#evmtokenamount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction success)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia message details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia message details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia message details)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Sepolia message details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=2\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", which ensures that only the router can deliver CCIP messages to the receiver contract.\\\"};duplicate=1\",\"expected\":\", which ensures that only the router can deliver CCIP messages to the receiver contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", which serves as a base contract for receiver contracts. This contract requires that child contracts implement the _ccipReceive\\\"};duplicate=1\",\"expected\":\", which serves as a base contract for receiver contracts. This contract requires that child contracts implement the _ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=2\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". For Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\". For Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=2\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Note: msg.value is set because you pay in native gas.\\\"};duplicate=1\",\"expected\":\". Note: msg.value is set because you pay in native gas.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". _ccipReceive is called by the ccipReceive\\\"};duplicate=1\",\"expected\":\". _ccipReceive is called by the ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=5\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=6\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=7\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=8\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=9\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=2\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AVAX to your contract. In this example, AVAX is used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"AVAX to your contract. In this example, AVAX is used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=2\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender and Avalanche Fuji. Note: Another security measure enforces that only the router can call the _ccipReceive function. Read the\\\"};duplicate=1\",\"expected\":\"At this point, you have one sender contract on Avalanche Fuji and one receiver contract on Ethereum Sepolia. As security measures, you enabled the sender contract to send CCIP messages to Ethereum Sepolia and the receiver contract to receive CCIP messages from the sender and Avalanche Fuji. Note: Another security measure enforces that only the router can call the _ccipReceive function. Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=2\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\\\"};duplicate=2\",\"expected\":\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\\\"};duplicate=2\",\"expected\":\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistDestinationChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistDestinationChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\\\"};duplicate=1\",\"expected\":\"Call the allowlistSender with the contract address of the contract that you deployed on Avalanche Fuji, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSourceChain with\\\"};duplicate=1\",\"expected\":\"Call the allowlistSourceChain with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getLastReceivedMessageDetails.\\\"};duplicate=1\",\"expected\":\"Call the getLastReceivedMessageDetails.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the getLastReceivedMessageDetails.\\\"};duplicate=2\",\"expected\":\"Call the getLastReceivedMessageDetails.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the router's ccipSend\\\"};duplicate=1\",\"expected\":\"Calls the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calls the router's getFee\\\"};duplicate=1\",\"expected\":\"Calls the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver contract on the destination chain:\\\"};duplicate=1\",\"expected\":\"Check the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver contract on the destination chain:\\\"};duplicate=2\",\"expected\":\"Check the receiver contract on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=1\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=2\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\\\"};duplicate=1\",\"expected\":\"Click on transact. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the fees by invoking the router's getFee\\\"};duplicate=1\",\"expected\":\"Computes the fees by invoking the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the fees by invoking the router's getFee\\\"};duplicate=2\",\"expected\":\"Computes the fees by invoking the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\\\"};duplicate=1\",\"expected\":\"Deploy your receiver contract on Ethereum Sepolia and enable receiving messages from your sender contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\\\"};duplicate=1\",\"expected\":\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\\\"};duplicate=2\",\"expected\":\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=2\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Enable your contract to receive CCIP messages from the contract that you deployed on Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to send CCIP messages to Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Enable your contract to send CCIP messages to Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures your contract balance in LINK is enough to cover the fees.\\\"};duplicate=1\",\"expected\":\"Ensures your contract balance in LINK is enough to cover the fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures your contract balance in native gas is enough to cover the fees.\\\"};duplicate=1\",\"expected\":\"Ensures your contract balance in native gas is enough to cover the fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayLINK function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayNative function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayNative function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the router address and the LINK address for your network. You can find the router address on the\\\"};duplicate=1\",\"expected\":\"Fill in the router address and the LINK address for your network. You can find the router address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=1\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=2\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Grants the router contract permission to deduct the fees from the contract's LINK balance.\\\"};duplicate=1\",\"expected\":\"Grants the router contract permission to deduct the fees from the contract's LINK balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=1\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=2\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=3\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\\\"};duplicate=4\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=2\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: As a security measure, the sendMessagePayLINK function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\\\"};duplicate=1\",\"expected\":\"Note: As a security measure, the sendMessagePayLINK function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: As a security measure, the sendMessagePayNative function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\\\"};duplicate=1\",\"expected\":\"Note: As a security measure, the sendMessagePayNative function is protected by the onlyAllowlistedDestinationChain, ensuring the contract owner has allowlisted a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to send data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to send data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to send data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"Note: These example contracts are designed to work bi-directionally. As an exercise, you can use them to send data from Avalanche Fuji to Ethereum Sepolia and from Ethereum Sepolia back to Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the received text is the one you sent, \\\\\\\"Hello World!\\\\\\\" and the message ID is the one you expect 0x28a804fa891bde8fb4f6617931187e1033a128c014aa76465911613588bc306f.\\\"};duplicate=1\",\"expected\":\"Notice the received text is the one you sent, \\\"Hello World!\\\" and the message ID is the one you expect 0x28a804fa891bde8fb4f6617931187e1033a128c014aa76465911613588bc306f.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice the received text is the one you sent, \\\\\\\"Hello World!\\\\\\\" and the message ID is the one you expect 0xb8cb414128f440e115dcd5d6ead50e14d250f9a47577c38af4f70deb14191457.\\\"};duplicate=1\",\"expected\":\"Notice the received text is the one you sent, \\\"Hello World!\\\" and the message ID is the one you expect 0xb8cb414128f440e115dcd5d6ead50e14d250f9a47577c38af4f70deb14191457.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the destination blockchain, the router invokes the ccipReceive\\\"};duplicate=1\",\"expected\":\"On the destination blockchain, the router invokes the ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Once the transaction is successful, note the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"Once the transaction is successful, note the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Once the transaction is successful, note the transaction hash. Here is an\\\"};duplicate=2\",\"expected\":\"Once the transaction is successful, note the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with AVAX. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with AVAX. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=3\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=2\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receiver part:\\\"};duplicate=1\",\"expected\":\"Receiver part:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send \\\\\\\"Hello World!\\\\\\\" from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Send \\\"Hello World!\\\" from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send \\\\\\\"Hello World!\\\\\\\" from Avalanche Fuji:\\\"};duplicate=2\",\"expected\":\"Send \\\"Hello World!\\\" from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sender part:\\\"};duplicate=1\",\"expected\":\"Sender part:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP messageId.\\\"};duplicate=1\",\"expected\":\"The CCIP messageId.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". In this example, the CCIP message ID is 0xb8cb414128f440e115dcd5d6ead50e14d250f9a47577c38af4f70deb14191457. Note that CCIP fees are denominated in LINK. Even if CCIP fees are paid using native gas tokens, node operators will be paid in LINK.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". In this example, the CCIP message ID is 0xb8cb414128f440e115dcd5d6ead50e14d250f9a47577c38af4f70deb14191457. Note that CCIP fees are denominated in LINK. Even if CCIP fees are paid using native gas tokens, node operators will be paid in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". Note: In this example, the CCIP message ID is 0x28a804fa891bde8fb4f6617931187e1033a128c014aa76465911613588bc306f.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". Note: In this example, the CCIP message ID is 0x28a804fa891bde8fb4f6617931187e1033a128c014aa76465911613588bc306f.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=1\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=2\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(0) signifies payment in native gas tokens (ETH).\\\"};duplicate=1\",\"expected\":\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(0) signifies payment in native gas tokens (ETH).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(linkToken) signifies payment in LINK.\\\"};duplicate=1\",\"expected\":\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(linkToken) signifies payment in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\\\"};duplicate=1\",\"expected\":\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\\\"};duplicate=2\",\"expected\":\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contract inherits from\\\"};duplicate=1\",\"expected\":\"The contract inherits from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data is encoded from a string to bytes using\\\"};duplicate=1\",\"expected\":\"The data is encoded from a string to bytes using\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data is encoded from a string to bytes using\\\"};duplicate=2\",\"expected\":\"The data is encoded from a string to bytes using\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data, which is also in bytes format. Given a string is expected, the data is decoded from bytes to a string using the\\\"};duplicate=1\",\"expected\":\"The data, which is also in bytes format. Given a string is expected, the data is decoded from bytes to a string using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination smart contract address\\\"};duplicate=1\",\"expected\":\"The destination smart contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination smart contract address\\\"};duplicate=2\",\"expected\":\"The destination smart contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to 200000.\\\"};duplicate=1\",\"expected\":\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to 200000.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to 200000.\\\"};duplicate=2\",\"expected\":\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to 200000.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=1\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=2\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sendMessagePayLINK function undertakes five primary operations:\\\"};duplicate=1\",\"expected\":\"The sendMessagePayLINK function undertakes five primary operations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sendMessagePayNative function undertakes four primary operations:\\\"};duplicate=1\",\"expected\":\"The sendMessagePayNative function undertakes four primary operations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sender address in bytes format. Given that the sender is known to be a contract deployed on an EVM-compatible blockchain, the address is decoded from bytes to an Ethereum address using the\\\"};duplicate=1\",\"expected\":\"The sender address in bytes format. Given that the sender is known to be a contract deployed on an EVM-compatible blockchain, the address is decoded from bytes to an Ethereum address using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contract featured in this tutorial is designed to interact with CCIP to send and receive messages. The contract code contains supporting comments clarifying the functions, events, and underlying logic. Here we will further explain initializing the contract and sending and receiving data.\\\"};duplicate=1\",\"expected\":\"The smart contract featured in this tutorial is designed to interact with CCIP to send and receive messages. The contract code contains supporting comments clarifying the functions, events, and underlying logic. Here we will further explain initializing the contract and sending and receiving data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sourceChainSelector.\\\"};duplicate=1\",\"expected\":\"The sourceChainSelector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an empty EVMTokenAmount\\\"};duplicate=1\",\"expected\":\"The tokenAmounts is an empty EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an empty EVMTokenAmount\\\"};duplicate=2\",\"expected\":\"The tokenAmounts is an empty EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example applies three important security measures:\\\"};duplicate=1\",\"expected\":\"This example applies three important security measures:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=2\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=2\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=2\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=2\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=2\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value (Ethereum Sepolia)\\\"};duplicate=1\",\"expected\":\"Value (Ethereum Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value (Ethereum Sepolia)\\\"};duplicate=2\",\"expected\":\"Value (Ethereum Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When deploying the contract, we define the router address and LINK contract address of the blockchain we deploy the contract on. Defining the router address is useful for the following:\\\"};duplicate=1\",\"expected\":\"When deploying the contract, we define the router address and LINK contract address of the blockchain we deploy the contract on. Defining the router address is useful for the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will use CCIP to send a text. The CCIP fees for using CCIP will be paid in LINK. Read this\\\"};duplicate=1\",\"expected\":\"You will use CCIP to send a text. The CCIP fees for using CCIP will be paid in LINK. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will use CCIP to send a text. The CCIP fees for using CCIP will be paid in native gas. Read this\\\"};duplicate=1\",\"expected\":\"You will use CCIP to send a text. The CCIP fees for using CCIP will be paid in native gas. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your deployed receiver contract address\\\"};duplicate=1\",\"expected\":\"Your deployed receiver contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your deployed receiver contract address\\\"};duplicate=2\",\"expected\":\"Your deployed receiver contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_ccipReceive is called by the ccipReceive\\\"};duplicate=1\",\"expected\":\"_ccipReceive is called by the ccipReceive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=1\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=2\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=1\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=2\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_text\\\"};duplicate=1\",\"expected\":\"_text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_text\\\"};duplicate=2\",\"expected\":\"_text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=1\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=2\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the LINK contract address on the\\\"};duplicate=1\",\"expected\":\"and the LINK contract address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"any string\\\"};duplicate=1\",\"expected\":\"any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"any string\\\"};duplicate=2\",\"expected\":\"any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"array as no tokens are transferred.\\\"};duplicate=1\",\"expected\":\"array as no tokens are transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"array as no tokens are transferred.\\\"};duplicate=2\",\"expected\":\"array as no tokens are transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=1\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=2\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed.\\\"};duplicate=1\",\"expected\":\"as allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the destination chain selector, and\\\"};duplicate=1\",\"expected\":\"as the destination chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the source chain selector, and\\\"};duplicate=1\",\"expected\":\"as the source chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a detailed description of the code example.\\\"};duplicate=1\",\"expected\":\"for a detailed description of the code example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a detailed description of the code example.\\\"};duplicate=2\",\"expected\":\"for a detailed description of the code example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=2\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=2\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section for more details.\\\"};duplicate=1\",\"expected\":\"section for more details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that contains:\\\"};duplicate=1\",\"expected\":\"that contains:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to estimate the CCIP fees.\\\"};duplicate=1\",\"expected\":\"to estimate the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=2\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to send CCIP messages.\\\"};duplicate=1\",\"expected\":\"to send CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=2\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=3\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"which expects an Any2EVMMessage\\\"};duplicate=1\",\"expected\":\"which expects an Any2EVMMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// Emitted when an acknowledgment message is successfully sent back to the sender contract. // This event signifies that the Acknowledger contract has recognized the receipt of an initial message // and has informed the original sender contract by sending an acknowledgment message, // including the original message ID. event AcknowledgmentSent( bytes32 indexed messageId, // The unique ID of the CCIP message. uint64 indexed destinationChainSelector, // The chain selector of the destination chain. address indexed receiver, // The address of the receiver on the destination chain. bytes32 data, // The data being sent back, usually containing the message ID of the original message to acknowledge its receipt. address feeToken, // The token address used to pay CCIP fees for sending the acknowledgment. uint256 fees // The fees paid for sending the acknowledgment message via CCIP. );\\\"};duplicate=1\",\"expected\":\"// Emitted when an acknowledgment message is successfully sent back to the sender contract. // This event signifies that the Acknowledger contract has recognized the receipt of an initial message // and has informed the original sender contract by sending an acknowledgment message, // including the original message ID. event AcknowledgmentSent( bytes32 indexed messageId, // The unique ID of the CCIP message. uint64 indexed destinationChainSelector, // The chain selector of the destination chain. address indexed receiver, // The address of the receiver on the destination chain. bytes32 data, // The data being sent back, usually containing the message ID of the original message to acknowledge its receipt. address feeToken, // The token address used to pay CCIP fees for sending the acknowledgment. uint256 fees // The fees paid for sending the acknowledgment message via CCIP. );\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// Enum is used to track the status of messages sent via CCIP. // `NotSent` indicates a message has not yet been sent. // `Sent` indicates that a message has been sent to the Acknowledger contract but not yet acknowledged. // `ProcessedOnDestination` indicates that the Acknowledger contract has processed the message and that // the Message Tracker contract has received the acknowledgment from the Acknowledger contract. enum MessageStatus { NotSent, // 0 Sent, // 1 ProcessedOnDestination // 2 }\\\"};duplicate=1\",\"expected\":\"// Enum is used to track the status of messages sent via CCIP. // `NotSent` indicates a message has not yet been sent. // `Sent` indicates that a message has been sent to the Acknowledger contract but not yet acknowledged. // `ProcessedOnDestination` indicates that the Acknowledger contract has processed the message and that // the Message Tracker contract has received the acknowledgment from the Acknowledger contract. enum MessageStatus { NotSent, // 0 Sent, // 1 ProcessedOnDestination // 2 }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// Event emitted when the sender contract receives an acknowledgment // that the receiver contract has successfully received and processed the message. event MessageProcessedOnDestination( bytes32 indexed messageId, // The unique ID of the CCIP acknowledgment message. bytes32 indexed acknowledgedMsgId, // The unique ID of the message acknowledged by the receiver. uint64 indexed sourceChainSelector, // The chain selector of the source chain. address sender // The address of the sender from the source chain. );\\\"};duplicate=1\",\"expected\":\"// Event emitted when the sender contract receives an acknowledgment // that the receiver contract has successfully received and processed the message. event MessageProcessedOnDestination( bytes32 indexed messageId, // The unique ID of the CCIP acknowledgment message. bytes32 indexed acknowledgedMsgId, // The unique ID of the message acknowledged by the receiver. uint64 indexed sourceChainSelector, // The chain selector of the source chain. address sender // The address of the sender from the source chain. );\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Acknowledgment message\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Acknowledgment message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Deploy the acknowledger (receiver) contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Deploy the acknowledger (receiver) contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Final status check\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Final status check\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Initial message\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Initial message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Send data and track the message status\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Send data and track the message status\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Avalanche Fuji explorer\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/\\\"};duplicate=1\",\"expected\":\"Avalanche Fuji explorer -> https://testnet.snowtrace.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=3\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=4\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=5\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP Explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=2\",\"expected\":\"CCIP Explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Ethereum Sepolia explorer\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io/\\\"};duplicate=1\",\"expected\":\"Ethereum Sepolia explorer -> https://sepolia.etherscan.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment#acknowledgersol\\\"};duplicate=1\",\"expected\":\"Examine the code -> /ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment#acknowledgersol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK Token Contracts\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK Token Contracts -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open Acknowledger.sol in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Acknowledger.sol\\\"};duplicate=1\",\"expected\":\"Open Acknowledger.sol in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Acknowledger.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open the Acknowledger.sol\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Acknowledger.sol\\\"};duplicate=1\",\"expected\":\"Open the Acknowledger.sol -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/Acknowledger.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Send Arbitrary Data\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/send-arbitrary-data#explanation\\\"};duplicate=1\",\"expected\":\"Send Arbitrary Data -> /ccip/tutorials/evm/send-arbitrary-data#explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment#acknowledger-contract\\\"};duplicate=1\",\"expected\":\"explanation -> /ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment#acknowledger-contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"initializing the contracts\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/send-arbitrary-data#initializing-of-the-contract\\\"};duplicate=1\",\"expected\":\"initializing the contracts -> /ccip/tutorials/evm/send-arbitrary-data#initializing-of-the-contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"receiving data\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/send-arbitrary-data#receiving-data\\\"};duplicate=1\",\"expected\":\"receiving data -> /ccip/tutorials/evm/send-arbitrary-data#receiving-data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"sending data, paying in LINK\\\",\\\"url\\\":\\\"/ccip/tutorials/evm/send-arbitrary-data#sending-data-and-pay-in-link\\\"};duplicate=1\",\"expected\":\"sending data, paying in LINK -> /ccip/tutorials/evm/send-arbitrary-data#sending-data-and-pay-in-link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP - CCIP Explorer Sepolia to Fuji Transaction Success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP - CCIP Explorer Sepolia to Fuji Transaction Success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP - Ethereum Sepolia Acknowledger Contract Events)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP - Ethereum Sepolia Acknowledger Contract Events)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP - Message Tracker Get Message Status - 1)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP - Message Tracker Get Message Status - 1)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP - Message Tracker Get Message Status - 2)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP - Message Tracker Get Message Status - 2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP - Message Tracker Message Confirmed Event)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP - Message Tracker Message Confirmed Event)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer - Fuji to Sepolia Transaction Details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer - Fuji to Sepolia Transaction Details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer - Fuji to Sepolia Transaction Success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer - Fuji to Sepolia Transaction Success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", the CCIP transaction and the destination transaction are complete. The acknowledger contract has received the message from the message tracker contract.\\\"};duplicate=1\",\"expected\":\", the CCIP transaction and the destination transaction are complete. The acknowledger contract has received the message from the message tracker contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=2\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=3\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". The LINK token contract address is also listed on the\\\"};duplicate=1\",\"expected\":\". The LINK token contract address is also listed on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=2\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=2\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is finalized on the source chain, it will take a few minutes for CCIP to deliver the data to Ethereum Sepolia and call the ccipReceive function on your acknowledger contract.\\\"};duplicate=1\",\"expected\":\"After the transaction is finalized on the source chain, it will take a few minutes for CCIP to deliver the data to Ethereum Sepolia and call the ccipReceive function on your acknowledger contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy this contract address.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy this contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allow the Avalanche Fuji chain selector for both destination and source chains. You must also enable your acknowledger contract to receive CCIP messages from the message tracker you deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Allow the Avalanche Fuji chain selector for both destination and source chains. You must also enable your acknowledger contract to receive CCIP messages from the message tracker you deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Any string\\\"};duplicate=1\",\"expected\":\"Any string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this point, you have one message tracker (sender) contract on Avalanche Fuji and one acknowledger (receiver) contract on Ethereum Sepolia. You sent 70 LINK to the message tracker contract and 70 LINK to the acknowledger contract to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"At this point, you have one message tracker (sender) contract on Avalanche Fuji and one acknowledger (receiver) contract on Ethereum Sepolia. You sent 70 LINK to the message tracker contract and 70 LINK to the acknowledger contract to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the source blockchain. You can find each network's chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the source blockchain. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\\\"};duplicate=2\",\"expected\":\"CCIP Chain identifier of the target blockchain. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistDestinationChain function with\\\"};duplicate=1\",\"expected\":\"Call the allowlistDestinationChain function with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistSourceChain function with\\\"};duplicate=1\",\"expected\":\"Call the allowlistSourceChain function with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click transact to call the function. MetaMask prompts you to confirm the transaction.\\\"};duplicate=1\",\"expected\":\"Click transact to call the function. MetaMask prompts you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click transact to call the function. MetaMask prompts you to confirm the transaction.\\\"};duplicate=2\",\"expected\":\"Click transact to call the function. MetaMask prompts you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click transact to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Click transact to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compile the contract.\\\"};duplicate=1\",\"expected\":\"Compile the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy the initial message ID from the CCIP explorer (transaction from Avalanche Fuji to Ethereum Sepolia) and paste it as the argument in the messagesInfo getter function. Click messagesInfo to read the message status. It returns status 2 and the acknowledgment message ID that confirms this status.\\\"};duplicate=1\",\"expected\":\"Copy the initial message ID from the CCIP explorer (transaction from Avalanche Fuji to Ethereum Sepolia) and paste it as the argument in the messagesInfo getter function. Click messagesInfo to read the message status. It returns status 2 and the acknowledgment message ID that confirms this status.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy the message ID from the CCIP Explorer transaction details. You will use this message ID to track your message status on the message tracker contract. In this example, it is 0xdd8be2f5f5d5cf3b8640c62924025b311ae83c6144f0f2ed5c24637436d6aab8.\\\"};duplicate=1\",\"expected\":\"Copy the message ID from the CCIP Explorer transaction details. You will use this message ID to track your message status on the message tracker contract. In this example, it is 0xdd8be2f5f5d5cf3b8640c62924025b311ae83c6144f0f2ed5c24637436d6aab8.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy your acknowledger contract address from Remix. Open the\\\"};duplicate=1\",\"expected\":\"Copy your acknowledger contract address from Remix. Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy your message tracker contract address from Remix. Open the\\\"};duplicate=1\",\"expected\":\"Copy your message tracker contract address from Remix. Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy your own message ID from the indexed topic1 and search for it in the\\\"};duplicate=1\",\"expected\":\"Copy your own message ID from the indexed topic1 and search for it in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the Acknowledger.sol contract on Ethereum Sepolia and enable it to send and receive CCIP messages to and from Avalanche Fuji. You must also enable your contract to receive CCIP messages from the message tracker contract.\\\"};duplicate=1\",\"expected\":\"Deploy the Acknowledger.sol contract on Ethereum Sepolia and enable it to send and receive CCIP messages to and from Avalanche Fuji. You must also enable your contract to receive CCIP messages from the message tracker contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the contract on Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Deploy the contract on Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expand the sendMessagePayLINK function and fill in the following arguments:\\\"};duplicate=1\",\"expected\":\"Expand the sendMessagePayLINK function and fill in the following arguments:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Finally, enable your message tracker contract to receive CCIP messages from the acknowledger contract you deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Finally, enable your message tracker contract to receive CCIP messages from the acknowledger contract you deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For each function you expanded and filled in the arguments for, click the transact button to call the function. MetaMask prompts you to confirm the transaction. Wait for each transaction to succeed before calling the following function.\\\"};duplicate=1\",\"expected\":\"For each function you expanded and filled in the arguments for, click the transact button to call the function. MetaMask prompts you to confirm the transaction. Wait for each transaction to succeed before calling the following function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Function\\\"};duplicate=1\",\"expected\":\"Function\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello World!\\\"};duplicate=1\",\"expected\":\"Hello World!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Here, we will further explain the acknowledgment of receipt mechanism.\\\"};duplicate=1\",\"expected\":\"Here, we will further explain the acknowledgment of receipt mechanism.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to the contract address that you copied. Your contract will pay CCIP fees in LINK.\\\"};duplicate=1\",\"expected\":\"LINK to the contract address that you copied. Your contract will pay CCIP fees in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to the contract address you copied. Your contract will pay CCIP fees in LINK.\\\"};duplicate=1\",\"expected\":\"LINK to the contract address you copied. Your contract will pay CCIP fees in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note the returned status 1. This value indicates that the message tracker contract has updated your message status to the Sent status as defined by the MessageStatus enum in the message tracker contract.\\\"};duplicate=1\",\"expected\":\"Note the returned status 1. This value indicates that the message tracker contract has updated your message status to the Sent status as defined by the MessageStatus enum in the message tracker contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: The contract code is also available in the\\\"};duplicate=1\",\"expected\":\"Note: The contract code is also available in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia.\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, expand the acknowledger contract in the Deployed Contracts section. Expand the allowlistDestinationChain, allowlistSender, and allowlistSourceChain functions and fill in the following arguments:\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, expand the acknowledger contract in the Deployed Contracts section. Expand the allowlistDestinationChain, allowlistSender, and allowlistSourceChain functions and fill in the following arguments:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, expand the message tracker contract in the Deployed Contracts section. Expand the allowlistSender function and fill in your acknowledger contract address and\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, expand the message tracker contract in the Deployed Contracts section. Expand the allowlistSender function and fill in your acknowledger contract address and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, expand the message tracker contract in the Deployed Contracts section.\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, expand the message tracker contract in the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, expand your message tracker contract in the Deployed Contracts section.\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, expand your message tracker contract in the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, expand your message tracker contract in the Deployed Contracts section.\\\"};duplicate=2\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, expand your message tracker contract in the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, make sure the Environment is still set to Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, make sure the Environment is still set to Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Avalanche Fuji network.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the Avalanche Fuji network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Avalanche Fuji network.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the Avalanche Fuji network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Avalanche Fuji network.\\\"};duplicate=3\",\"expected\":\"Open MetaMask and select the Avalanche Fuji network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Ethereum Sepolia network.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the Ethereum Sepolia network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the Ethereum Sepolia network.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the Ethereum Sepolia network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and send\\\"};duplicate=1\",\"expected\":\"Open MetaMask and send\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and send\\\"};duplicate=2\",\"expected\":\"Open MetaMask and send\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Paste the message ID you copied from the CCIP explorer as the argument in the messagesInfo getter function. Click messagesInfo to read the message status.\\\"};duplicate=1\",\"expected\":\"Paste the message ID you copied from the CCIP explorer as the argument in the messagesInfo getter function. Click messagesInfo to read the message status.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refer to the\\\"};duplicate=1\",\"expected\":\"Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Send a Hello World! string from your message tracker contract on Avalanche Fuji to your acknowledger contract deployed on Ethereum Sepolia. You will track the status of this message during this tutorial.\\\"};duplicate=1\",\"expected\":\"Send a Hello World! string from your message tracker contract on Avalanche Fuji to your acknowledger contract deployed on Ethereum Sepolia. You will track the status of this message during this tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK token address is\\\"};duplicate=1\",\"expected\":\"The LINK token address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK token address is\\\"};duplicate=2\",\"expected\":\"The LINK token address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The MessageProcessedOnDestination event is emitted with the acknowledged message ID 0xdd8be2f5f5d5cf3b8640c62924025b311ae83c6144f0f2ed5c24637436d6aab8 as indexed topic2.\\\"};duplicate=1\",\"expected\":\"The MessageProcessedOnDestination event is emitted with the acknowledged message ID 0xdd8be2f5f5d5cf3b8640c62924025b311ae83c6144f0f2ed5c24637436d6aab8 as indexed topic2.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Router address is\\\"};duplicate=1\",\"expected\":\"The Router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The acknowledger contract processes the message, sends an acknowledgment message containing the initial message ID back to the message tracker contract, and emits an AcknowledgmentSent event. Read this\\\"};duplicate=1\",\"expected\":\"The acknowledger contract processes the message, sends an acknowledgment message containing the initial message ID back to the message tracker contract, and emits an AcknowledgmentSent event. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the message tracker contract deployed on Avalanche Fuji\\\"};duplicate=1\",\"expected\":\"The address of the message tracker contract deployed on Avalanche Fuji\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination smart contract address\\\"};duplicate=1\",\"expected\":\"The destination smart contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The first indexed topic (topic1) in the AcknowledgmentSent event is the acknowledgment message ID sent to the message tracker contract on Avalanche Fuji. In this example, the message ID is 0xd4d4a5d0db05dc714f8150c1af654ed34eb8c9f7547401fa9bf072a815f56ac1.\\\"};duplicate=1\",\"expected\":\"The first indexed topic (topic1) in the AcknowledgmentSent event is the acknowledgment message ID sent to the message tracker contract on Avalanche Fuji. In this example, the message ID is 0xd4d4a5d0db05dc714f8150c1af654ed34eb8c9f7547401fa9bf072a815f56ac1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=1\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contracts featured in this tutorial are designed to interact with CCIP to send and receive messages with an acknowledgment of receipt mechanism. The contract code across both contracts contains supporting comments clarifying the functions, events, and underlying logic.\\\"};duplicate=1\",\"expected\":\"The smart contracts featured in this tutorial are designed to interact with CCIP to send and receive messages with an acknowledgment of receipt mechanism. The contract code across both contracts contains supporting comments clarifying the functions, events, and underlying logic.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Deploy section, fill in the router address and the LINK token contract address for your specific blockchain. You can find both of these addresses on the\\\"};duplicate=1\",\"expected\":\"Under the Deploy section, fill in the router address and the LINK token contract address for your specific blockchain. You can find both of these addresses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Upon transaction success, expand the last transaction in the Remix log and copy the transaction hash. In this example, it is 0x1f88abc33a4ab426a5466e01d9e5fe8a2b96d6a6e5cedb643a674489c74126b4.\\\"};duplicate=1\",\"expected\":\"Upon transaction success, expand the last transaction in the Remix log and copy the transaction hash. In this example, it is 0x1f88abc33a4ab426a5466e01d9e5fe8a2b96d6a6e5cedb643a674489c74126b4.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value (Avalanche Fuji)\\\"};duplicate=1\",\"expected\":\"Value (Avalanche Fuji)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value (Ethereum Sepolia)\\\"};duplicate=1\",\"expected\":\"Value (Ethereum Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When the message tracker receives the acknowledgment message, the ccipReceive function updates the initial message status to 2, which corresponds to the ProcessedOnDestination status as defined by the MessageStatus enum. The function emits a MessageProcessedOnDestination event.\\\"};duplicate=1\",\"expected\":\"When the message tracker receives the acknowledgment message, the ccipReceive function updates the initial message status to 2, which corresponds to the ProcessedOnDestination status as defined by the MessageStatus enum. The function emits a MessageProcessedOnDestination event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When the transaction is marked with a \\\\\\\"Success\\\\\\\" status on the CCIP explorer, the CCIP transaction and the destination transaction are complete. The message tracker contract has received the message from the acknowledger contract.\\\"};duplicate=1\",\"expected\":\"When the transaction is marked with a \\\"Success\\\" status on the CCIP explorer, the CCIP transaction and the destination transaction are complete. The message tracker contract has received the message from the acknowledger contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When the transaction is marked with a \\\\\\\"Success\\\\\\\" status on the\\\"};duplicate=1\",\"expected\":\"When the transaction is marked with a \\\"Success\\\" status on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your deployed acknowledger contract address\\\"};duplicate=1\",\"expected\":\"Your deployed acknowledger contract address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your deployed contract address,\\\"};duplicate=1\",\"expected\":\"Your deployed contract address,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlistDestinationChain\\\"};duplicate=1\",\"expected\":\"allowlistDestinationChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlistSender\\\"};duplicate=1\",\"expected\":\"allowlistSender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"allowlistSourceChain\\\"};duplicate=1\",\"expected\":\"allowlistSourceChain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search for your deployed acknowledger contract. Click the Events tab to see the events log.\\\"};duplicate=1\",\"expected\":\"and search for your deployed acknowledger contract. Click the Events tab to see the events log.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search for your deployed message tracker contract. Then, click on the Events tab.\\\"};duplicate=1\",\"expected\":\"and search for your deployed message tracker contract. Then, click on the Events tab.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and use the transaction hash that you copied to search for your cross-chain transaction.\\\"};duplicate=1\",\"expected\":\"and use the transaction hash that you copied to search for your cross-chain transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. You can find each network's chain selector on the\\\"};duplicate=1\",\"expected\":\"as allowed. You can find each network's chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed.\\\"};duplicate=1\",\"expected\":\"as allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed.\\\"};duplicate=2\",\"expected\":\"as allowed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the destination chain selector for Ethereum Sepolia and\\\"};duplicate=1\",\"expected\":\"as the destination chain selector for Ethereum Sepolia and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the source chain selector for Ethereum Sepolia and\\\"};duplicate=1\",\"expected\":\"as the source chain selector for Ethereum Sepolia and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contract in Remix.\\\"};duplicate=1\",\"expected\":\"contract in Remix.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destinationChainSelector\\\"};duplicate=1\",\"expected\":\"destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for further description.\\\"};duplicate=1\",\"expected\":\"for further description.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. For Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"page. For Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section.\\\"};duplicate=1\",\"expected\":\"section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"text\\\"};duplicate=1\",\"expected\":\"text\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=2\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=3\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=4\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=5\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=6\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tutorial for more explanation about\\\"};duplicate=1\",\"expected\":\"tutorial for more explanation about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/send-arbitrary-data-receipt-acknowledgment\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Initializing of the contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Initializing of the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transfer tokens and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transfer tokens and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transfer tokens and pay in native\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transfer tokens and pay in native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transferring tokens and pay in LINK\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transferring tokens and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transferring tokens and pay in native\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Transferring tokens and pay in native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=2\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EVMTokenAmount struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#evmtokenamount\\\"};duplicate=1\",\"expected\":\"EVMTokenAmount struct -> /ccip/api-reference/evm/v1.6.1/client#evmtokenamount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"abi.encode\\\",\\\"url\\\":\\\"https://docs.soliditylang.org/en/develop/abi-spec.html\\\"};duplicate=1\",\"expected\":\"abi.encode -> https://docs.soliditylang.org/en/develop/abi-spec.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"etherscan\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io\\\"};duplicate=1\",\"expected\":\"etherscan -> https://sepolia.etherscan.io\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"etherscan\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io\\\"};duplicate=2\",\"expected\":\"etherscan -> https://sepolia.etherscan.io\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x186e5767d65dffe685c24d5ee881201e2b39fd684220a68943b0b861178ddf64\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x186e5767d65dffe685c24d5ee881201e2b39fd684220a68943b0b861178ddf64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x62ca604240fc30133646ff94dcedac5375c5e42b109f3339c85e4fa29541d42b\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x62ca604240fc30133646ff94dcedac5375c5e42b109f3339c85e4fa29541d42b\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#transferring-tokens-and-pay-in-link\\\"};duplicate=1\",\"expected\":\"explanation -> #transferring-tokens-and-pay-in-link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"explanation\\\",\\\"url\\\":\\\"#transferring-tokens-and-pay-in-native\\\"};duplicate=1\",\"expected\":\"explanation -> #transferring-tokens-and-pay-in-native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=2\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#ccipsend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"function\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/i-router-client#getfee\\\"};duplicate=1\",\"expected\":\"function -> /ccip/api-reference/evm/v1.6.1/i-router-client#getfee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#any2evmmessage\\\"};duplicate=1\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#any2evmmessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"struct\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#evmtokenamount\\\"};duplicate=1\",\"expected\":\"struct -> /ccip/api-reference/evm/v1.6.1/client#evmtokenamount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"transaction hash\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io/tx/0x083fc1a79ffcfd617426fd71dff87ca16db2e4333e62a28cdd13d4bec0926bcb\\\"};duplicate=1\",\"expected\":\"transaction hash -> https://sepolia.etherscan.io/tx/0x083fc1a79ffcfd617426fd71dff87ca16db2e4333e62a28cdd13d4bec0926bcb\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"transaction hash\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io/tx/0xf403d828fa377d657af67f12e99ff435974299c27ba2d57c53494d29bbbfc938\\\"};duplicate=1\",\"expected\":\"transaction hash -> https://sepolia.etherscan.io/tx/0xf403d828fa377d657af67f12e99ff435974299c27ba2d57c53494d29bbbfc938\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia tokens received)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Sepolia tokens received)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Sepolia tokens received)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Sepolia tokens received)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=2\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"..\\\"};duplicate=1\",\"expected\":\"..\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0.002\\\"};duplicate=1\",\"expected\":\"0.002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0.2\\\"};duplicate=1\",\"expected\":\"0.2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\\\"};duplicate=1\",\"expected\":\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\\\"};duplicate=2\",\"expected\":\"0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\\\"};duplicate=1\",\"expected\":\"0xF694E193200268f9a4868e4Aa017A0118C9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000\\\"};duplicate=1\",\"expected\":\"1000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000\\\"};duplicate=2\",\"expected\":\"1000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=3\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AVAX to your contract. Note: The native gas tokens are used to pay for CCIP fees.\\\"};duplicate=1\",\"expected\":\"AVAX to your contract. Note: The native gas tokens are used to pay for CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=2\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP-BnM to your contract.\\\"};duplicate=1\",\"expected\":\"CCIP-BnM to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\\\"};duplicate=1\",\"expected\":\"Call the _buildCCIPMessage private function to construct a CCIP-compatible message using the EVM2AnyMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the allowlistDestinationChain function with\\\"};duplicate=1\",\"expected\":\"Call the allowlistDestinationChain function with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver account on the destination chain:\\\"};duplicate=1\",\"expected\":\"Check the receiver account on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the receiver account on the destination chain:\\\"};duplicate=2\",\"expected\":\"Check the receiver account on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button and confirm the transaction on MetaMask.\\\"};duplicate=1\",\"expected\":\"Click the transact button and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button and confirm the transaction on MetaMask.\\\"};duplicate=2\",\"expected\":\"Click the transact button and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\\\"};duplicate=1\",\"expected\":\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list. Note your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the fees by invoking the router's getFee\\\"};duplicate=1\",\"expected\":\"Computes the fees by invoking the router's getFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\\\"};duplicate=1\",\"expected\":\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enable your contract to transfer tokens to Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"Enable your contract to transfer tokens to Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures your contract balance in LINK is enough to cover the fees.\\\"};duplicate=1\",\"expected\":\"Ensures your contract balance in LINK is enough to cover the fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures your contract balance in native gas is enough to cover the fees.\\\"};duplicate=1\",\"expected\":\"Ensures your contract balance in native gas is enough to cover the fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the transferTokensPayLINK function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the transferTokensPayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the transferTokensPayNative function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the transferTokensPayNative function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=1\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Grants the router contract permission to deduct the amount from the contract's CCIP-BnM balance.\\\"};duplicate=1\",\"expected\":\"Grants the router contract permission to deduct the amount from the contract's CCIP-BnM balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Grants the router contract permission to deduct the fees from the contract's LINK balance.\\\"};duplicate=1\",\"expected\":\"Grants the router contract permission to deduct the fees from the contract's LINK balance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of functions for your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of functions for your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to your contract. Note: The LINK tokens are used to pay for CCIP fees.\\\"};duplicate=1\",\"expected\":\"LINK to your contract. Note: The LINK tokens are used to pay for CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=2\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note the destination transaction hash from the CCIP explorer. 0x083fc1a79ffcfd617426fd71dff87ca16db2e4333e62a28cdd13d4bec0926bcb in this example.\\\"};duplicate=1\",\"expected\":\"Note the destination transaction hash from the CCIP explorer. 0x083fc1a79ffcfd617426fd71dff87ca16db2e4333e62a28cdd13d4bec0926bcb in this example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note the destination transaction hash from the CCIP explorer. 0xf403d828fa377d657af67f12e99ff435974299c27ba2d57c53494d29bbbfc938 in this example.\\\"};duplicate=1\",\"expected\":\"Note the destination transaction hash from the CCIP explorer. 0xf403d828fa377d657af67f12e99ff435974299c27ba2d57c53494d29bbbfc938 in this example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: As a security measure, the transferTokensPayLINK function is protected by the onlyAllowlistedChain to ensure the contract owner has allowlisted a destination chain.\\\"};duplicate=1\",\"expected\":\"Note: As a security measure, the transferTokensPayLINK function is protected by the onlyAllowlistedChain to ensure the contract owner has allowlisted a destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\\\"};duplicate=1\",\"expected\":\"Note: This transaction fee is significantly higher than normal due to gas spikes on Sepolia. To run this example, you can get additional testnet LINK from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice in the Tokens Transferred section that CCIP-BnM tokens have been transferred to your account (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"Notice in the Tokens Transferred section that CCIP-BnM tokens have been transferred to your account (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice in the Tokens Transferred section that CCIP-BnM tokens have been transferred to your account (0.001 CCIP-BnM).\\\"};duplicate=2\",\"expected\":\"Notice in the Tokens Transferred section that CCIP-BnM tokens have been transferred to your account (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Once the transaction is successful, note the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"Once the transaction is successful, note the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Once the transaction is successful, note the transaction hash. Here is an\\\"};duplicate=2\",\"expected\":\"Once the transaction is successful, note the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with LINK tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with native gas tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and connect to Avalanche Fuji. Fund your contract with native gas tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and fund your contract with CCIP-BnM tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the block explorer for your destination chain. For Ethereum Sepolia, open\\\"};duplicate=1\",\"expected\":\"Open the block explorer for your destination chain. For Ethereum Sepolia, open\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the block explorer for your destination chain. For Ethereum Sepolia, open\\\"};duplicate=2\",\"expected\":\"Open the block explorer for your destination chain. For Ethereum Sepolia, open\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=2\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Search the\\\"};duplicate=1\",\"expected\":\"Search the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Search the\\\"};duplicate=2\",\"expected\":\"Search the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". The data field is empty because you are only transferring tokens.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". The data field is empty because you are only transferring tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". The data field is empty because you only transfer tokens. Note that CCIP fees are denominated in LINK. Even if CCIP fees are paid using native gas tokens, node operators will be paid in LINK.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". The data field is empty because you only transfer tokens. Note that CCIP fees are denominated in LINK. Even if CCIP fees are paid using native gas tokens, node operators will be paid in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\\\"};duplicate=1\",\"expected\":\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\\\"};duplicate=2\",\"expected\":\"The CCIP-BnM contract address at the source chain (Avalanche Fuji in this example). You can find all the addresses for each supported blockchain on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK contract address is\\\"};duplicate=1\",\"expected\":\"The LINK contract address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(0) signifies payment in native gas tokens (ETH).\\\"};duplicate=1\",\"expected\":\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(0) signifies payment in native gas tokens (ETH).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(linkToken) signifies payment in LINK.\\\"};duplicate=1\",\"expected\":\"The _feeTokenAddress designates the token address used for CCIP fees. Here, address(linkToken) signifies payment in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\\\"};duplicate=1\",\"expected\":\"The _receiver address is encoded in bytes to accommodate non-EVM destination blockchains with distinct address formats. The encoding is achieved through\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The data is empty because you only transfer tokens.\\\"};duplicate=1\",\"expected\":\"The data is empty because you only transfer tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination account address. It could be a smart contract or an EOA.\\\"};duplicate=1\",\"expected\":\"The destination account address. It could be a smart contract or an EOA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination account address. It could be a smart contract or an EOA.\\\"};duplicate=2\",\"expected\":\"The destination account address. It could be a smart contract or an EOA.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to 0 because the contract only transfers tokens and does not expect function calls on the destination blockchain.\\\"};duplicate=1\",\"expected\":\"The extraArgs specifies the gasLimit for relaying the message to the recipient contract on the destination blockchain. In this example, the gasLimit is set to 0 because the contract only transfers tokens and does not expect function calls on the destination blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The router address is\\\"};duplicate=1\",\"expected\":\"The router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contract featured in this tutorial is designed to interact with CCIP to transfer a supported token to an account on a destination chain. The contract code contains supporting comments clarifying the functions, events, and underlying logic. This section further explains initializing the contract and transferring tokens.\\\"};duplicate=1\",\"expected\":\"The smart contract featured in this tutorial is designed to interact with CCIP to transfer a supported token to an account on a destination chain. The contract code contains supporting comments clarifying the functions, events, and underlying logic. This section further explains initializing the contract and transferring tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (0.001 CCIP-BnM).\\\"};duplicate=1\",\"expected\":\"The token amount (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (0.001 CCIP-BnM).\\\"};duplicate=2\",\"expected\":\"The token amount (0.001 CCIP-BnM).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an array, with each element comprising a\\\"};duplicate=1\",\"expected\":\"The tokenAmounts is an array, with each element comprising a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The tokenAmounts is an array, with each element comprising an EVMTokenAmount\\\"};duplicate=1\",\"expected\":\"The tokenAmounts is an array, with each element comprising an EVMTokenAmount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The transferTokensPayLINK function undertakes six primary operations:\\\"};duplicate=1\",\"expected\":\"The transferTokensPayLINK function undertakes six primary operations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The transferTokensPayNative function undertakes five primary operations:\\\"};duplicate=1\",\"expected\":\"The transferTokensPayNative function undertakes five primary operations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfer CCIP-BnM from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Transfer CCIP-BnM from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=2\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=1\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When you deploy the contract, you define the router address and LINK contract address of the blockchain where you deploy the contract. The contract uses the router address to interact with the router to estimate the CCIP fees and the transmission of CCIP messages.\\\"};duplicate=1\",\"expected\":\"When you deploy the contract, you define the router address and LINK contract address of the blockchain where you deploy the contract. The contract uses the router address to interact with the router to estimate the CCIP fees and the transmission of CCIP messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 0.001 CCIP-BnM. The CCIP fees for using CCIP will be paid in Avalanche Fuji's native AVAX. Read this\\\"};duplicate=1\",\"expected\":\"You will transfer 0.001 CCIP-BnM. The CCIP fees for using CCIP will be paid in Avalanche Fuji's native AVAX. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 0.001 CCIP-BnM. The CCIP fees for using CCIP will be paid in LINK. Read this\\\"};duplicate=1\",\"expected\":\"You will transfer 0.001 CCIP-BnM. The CCIP fees for using CCIP will be paid in LINK. Read this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your account address on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Your account address on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your account address on Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"Your account address on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=1\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=2\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=1\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=1\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_token\\\"};duplicate=1\",\"expected\":\"_token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=1\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=2\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as allowed. Each chain selector is found on the\\\"};duplicate=1\",\"expected\":\"as allowed. Each chain selector is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as the destination chain selector, and\\\"};duplicate=1\",\"expected\":\"as the destination chain selector, and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"containing the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the transferTokensPayNative function.\\\"};duplicate=1\",\"expected\":\"containing the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the transferTokensPayNative function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a detailed description of the code example.\\\"};duplicate=1\",\"expected\":\"for a detailed description of the code example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\"or use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that contains the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the transferTokensPayLINK function.\\\"};duplicate=1\",\"expected\":\"that contains the token address and amount. The array contains one element where the _token (token address) and _amount (token amount) are passed by the user when calling the transferTokensPayLINK function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=16\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/transfer-tokens-from-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {ERC20} from \\\\\\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\\\\\"; import {SafeERC20} from \\\\\\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\\\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY. * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE. * DO NOT USE THIS CODE IN PRODUCTION. */ interface IStaker { function stake( address beneficiary, uint256 amount ) external; function redeem() external; } /// @title - A simple Staker contract for staking usc tokens and redeeming the staker contracts contract Staker is IStaker, ERC20 { using SafeERC20 for ERC20; error InvalidUsdcToken(); // Used when the usdc token address is 0 error InvalidNumberOfDecimals(); // Used when the number of decimals is 0 error InvalidBeneficiary(); // Used when the beneficiary address is 0 error InvalidAmount(); // Used when the amount is 0 error NothingToRedeem(); // Used when the balance of Staker tokens is 0 event UsdcStaked(address indexed beneficiary, uint256 amount); event UsdcRedeemed(address indexed beneficiary, uint256 amount); ERC20 private immutable i_usdcToken; uint8 private immutable i_decimals; /// @notice Constructor initializes the contract with the usdc token address. /// @param _usdcToken The address of the usdc contract. constructor( address _usdcToken ) ERC20(\\\\\\\"Simple Staker\\\\\\\", \\\\\\\"STK\\\\\\\") { if (_usdcToken == address(0)) revert InvalidUsdcToken(); i_usdcToken = ERC20(_usdcToken); i_decimals = i_usdcToken.decimals(); if (i_decimals == 0) revert InvalidNumberOfDecimals(); } function stake( address _beneficiary, uint256 _amount ) external { if (_beneficiary == address(0)) revert InvalidBeneficiary(); if (_amount == 0) revert InvalidAmount(); i_usdcToken.safeTransferFrom(msg.sender, address(this), _amount); _mint(_beneficiary, _amount); emit UsdcStaked(_beneficiary, _amount); } function redeem() external { uint256 balance = balanceOf(msg.sender); if (balance == 0) revert NothingToRedeem(); _burn(msg.sender, balance); i_usdcToken.safeTransfer(msg.sender, balance); emit UsdcRedeemed(msg.sender, balance); } function decimals() public view override returns (uint8) { return i_decimals; } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {ERC20} from \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\"; import {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY. * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE. * DO NOT USE THIS CODE IN PRODUCTION. */ interface IStaker { function stake( address beneficiary, uint256 amount ) external; function redeem() external; } /// @title - A simple Staker contract for staking usc tokens and redeeming the staker contracts contract Staker is IStaker, ERC20 { using SafeERC20 for ERC20; error InvalidUsdcToken(); // Used when the usdc token address is 0 error InvalidNumberOfDecimals(); // Used when the number of decimals is 0 error InvalidBeneficiary(); // Used when the beneficiary address is 0 error InvalidAmount(); // Used when the amount is 0 error NothingToRedeem(); // Used when the balance of Staker tokens is 0 event UsdcStaked(address indexed beneficiary, uint256 amount); event UsdcRedeemed(address indexed beneficiary, uint256 amount); ERC20 private immutable i_usdcToken; uint8 private immutable i_decimals; /// @notice Constructor initializes the contract with the usdc token address. /// @param _usdcToken The address of the usdc contract. constructor( address _usdcToken ) ERC20(\\\"Simple Staker\\\", \\\"STK\\\") { if (_usdcToken == address(0)) revert InvalidUsdcToken(); i_usdcToken = ERC20(_usdcToken); i_decimals = i_usdcToken.decimals(); if (i_decimals == 0) revert InvalidNumberOfDecimals(); } function stake( address _beneficiary, uint256 _amount ) external { if (_beneficiary == address(0)) revert InvalidBeneficiary(); if (_amount == 0) revert InvalidAmount(); i_usdcToken.safeTransferFrom(msg.sender, address(this), _amount); _mint(_beneficiary, _amount); emit UsdcStaked(_beneficiary, _amount); } function redeem() external { uint256 balance = balanceOf(msg.sender); if (balance == 0) revert NothingToRedeem(); _burn(msg.sender, balance); i_usdcToken.safeTransfer(msg.sender, balance); emit UsdcRedeemed(msg.sender, balance); } function decimals() public view override returns (uint8) { return i_decimals; } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {IRouterClient} from \\\\\\\"@chainlink/contracts-ccip/contracts/interfaces/IRouterClient.sol\\\\\\\"; import {Client} from \\\\\\\"@chainlink/contracts-ccip/contracts/libraries/Client.sol\\\\\\\"; import {OwnerIsCreator} from \\\\\\\"@chainlink/contracts@1.4.0/src/v0.8/shared/access/OwnerIsCreator.sol\\\\\\\"; import {IERC20} from \\\\\\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\\\\\"; import {SafeERC20} from \\\\\\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\\\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY. * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE. * DO NOT USE THIS CODE IN PRODUCTION. */ interface IStaker { function stake( address beneficiary, uint256 amount ) external; function redeem() external; } /// @title - A simple messenger contract for transferring tokens to a receiver that calls a staker contract. contract Sender is OwnerIsCreator { using SafeERC20 for IERC20; // Custom errors to provide more descriptive revert messages. error InvalidRouter(); // Used when the router address is 0 error InvalidLinkToken(); // Used when the link token address is 0 error InvalidUsdcToken(); // Used when the usdc token address is 0 error NotEnoughBalance(uint256 currentBalance, uint256 calculatedFees); // Used to make sure contract has enough // balance to cover the fees. error NothingToWithdraw(); // Used when trying to withdraw Ether but there's nothing to withdraw. error InvalidDestinationChain(); // Used when the destination chain selector is 0. error InvalidReceiverAddress(); // Used when the receiver address is 0. error NoReceiverOnDestinationChain(uint64 destinationChainSelector); // Used when the receiver address is 0 for a // given destination chain. error AmountIsZero(); // Used if the amount to transfer is 0. error InvalidGasLimit(); // Used if the gas limit is 0. error NoGasLimitOnDestinationChain(uint64 destinationChainSelector); // Used when the gas limit is 0. // Event emitted when a message is sent to another chain. // The chain selector of the destination chain. // The address of the receiver contract on the destination chain. // The beneficiary of the staked tokens on the destination chain. // The token address that was transferred. // The token amount that was transferred. // the token address used to pay CCIP fees. // The fees paid for sending the message. event MessageSent( // The unique ID of the CCIP message. bytes32 indexed messageId, uint64 indexed destinationChainSelector, address indexed receiver, address beneficiary, address token, uint256 tokenAmount, address feeToken, uint256 fees ); IRouterClient private immutable i_router; IERC20 private immutable i_linkToken; IERC20 private immutable i_usdcToken; // Mapping to keep track of the receiver contract per destination chain. mapping(uint64 => address) public s_receivers; // Mapping to store the gas limit per destination chain. mapping(uint64 => uint256) public s_gasLimits; modifier validateDestinationChain( uint64 _destinationChainSelector ) { if (_destinationChainSelector == 0) revert InvalidDestinationChain(); _; } /// @notice Constructor initializes the contract with the router address. /// @param _router The address of the router contract. /// @param _link The address of the link contract. /// @param _usdcToken The address of the usdc contract. constructor( address _router, address _link, address _usdcToken ) { if (_router == address(0)) revert InvalidRouter(); if (_link == address(0)) revert InvalidLinkToken(); if (_usdcToken == address(0)) revert InvalidUsdcToken(); i_router = IRouterClient(_router); i_linkToken = IERC20(_link); i_usdcToken = IERC20(_usdcToken); } /// @dev Set the receiver contract for a given destination chain. /// @notice This function can only be called by the owner. /// @param _destinationChainSelector The selector of the destination chain. /// @param _receiver The receiver contract on the destination chain . function setReceiverForDestinationChain( uint64 _destinationChainSelector, address _receiver ) external onlyOwner validateDestinationChain(_destinationChainSelector) { if (_receiver == address(0)) revert InvalidReceiverAddress(); s_receivers[_destinationChainSelector] = _receiver; } /// @dev Set the gas limit for a given destination chain. /// @notice This function can only be called by the owner. /// @param _destinationChainSelector The selector of the destination chain. /// @param _gasLimit The gas limit on the destination chain . function setGasLimitForDestinationChain( uint64 _destinationChainSelector, uint256 _gasLimit ) external onlyOwner validateDestinationChain(_destinationChainSelector) { if (_gasLimit == 0) revert InvalidGasLimit(); s_gasLimits[_destinationChainSelector] = _gasLimit; } /// @dev Delete the receiver contract for a given destination chain. /// @notice This function can only be called by the owner. /// @param _destinationChainSelector The selector of the destination chain. function deleteReceiverForDestinationChain( uint64 _destinationChainSelector ) external onlyOwner validateDestinationChain(_destinationChainSelector) { if (s_receivers[_destinationChainSelector] == address(0)) { revert NoReceiverOnDestinationChain(_destinationChainSelector); } delete s_receivers[_destinationChainSelector]; } /// @notice Sends data and transfer tokens to receiver on the destination chain. /// @notice Pay for fees in LINK. /// @dev Assumes your contract has sufficient LINK to pay for CCIP fees. /// @param _destinationChainSelector The identifier (aka selector) for the destination blockchain. /// @param _beneficiary The address of the beneficiary of the staked tokens on the destination blockchain. /// @param _amount token amount. /// @return messageId The ID of the CCIP message that was sent. function sendMessagePayLINK( uint64 _destinationChainSelector, address _beneficiary, uint256 _amount ) external onlyOwner validateDestinationChain(_destinationChainSelector) returns (bytes32 messageId) { address receiver = s_receivers[_destinationChainSelector]; if (receiver == address(0)) { revert NoReceiverOnDestinationChain(_destinationChainSelector); } if (_amount == 0) revert AmountIsZero(); uint256 gasLimit = s_gasLimits[_destinationChainSelector]; if (gasLimit == 0) { revert NoGasLimitOnDestinationChain(_destinationChainSelector); } // Create an EVM2AnyMessage struct in memory with necessary information for sending a cross-chain message // address(linkToken) means fees are paid in LINK Client.EVMTokenAmount[] memory tokenAmounts = new Client.EVMTokenAmount[](1); tokenAmounts[0] = Client.EVMTokenAmount({token: address(i_usdcToken), amount: _amount}); // Create an EVM2AnyMessage struct in memory with necessary information for sending a cross-chain message Client.EVM2AnyMessage memory evm2AnyMessage = Client.EVM2AnyMessage({ receiver: abi.encode(receiver), // ABI-encoded receiver address data: abi.encodeWithSelector(IStaker.stake.selector, _beneficiary, _amount), // Encode the function selector and // the arguments of the stake function tokenAmounts: tokenAmounts, // The amount and type of token being transferred extraArgs: Client._argsToBytes( // Additional arguments, setting gas limit and allowing out-of-order execution. // Best Practice: For simplicity, the values are hardcoded. It is advisable to use a more dynamic approach // where you set the extra arguments off-chain. This allows adaptation depending on the lanes, messages, // and ensures compatibility with future CCIP upgrades. Read more about it here: // https://docs.chain.link/ccip/concepts/best-practices/evm#using-extraargs Client.GenericExtraArgsV2({ gasLimit: gasLimit, // Gas limit for the callback on the destination chain allowOutOfOrderExecution: true // Allows the message to be executed out of order relative to other messages // from // the same sender }) ), // Set the feeToken to a feeTokenAddress, indicating specific asset will be used for fees feeToken: address(i_linkToken) }); // Get the fee required to send the CCIP message uint256 fees = i_router.getFee(_destinationChainSelector, evm2AnyMessage); if (fees > i_linkToken.balanceOf(address(this))) { revert NotEnoughBalance(i_linkToken.balanceOf(address(this)), fees); } // approve the Router to transfer LINK tokens on contract's behalf. It will spend the fees in LINK i_linkToken.approve(address(i_router), fees); // approve the Router to spend usdc tokens on contract's behalf. It will spend the amount of the given token i_usdcToken.approve(address(i_router), _amount); // Send the message through the router and store the returned message ID messageId = i_router.ccipSend(_destinationChainSelector, evm2AnyMessage); // Emit an event with message details emit MessageSent( messageId, _destinationChainSelector, receiver, _beneficiary, address(i_usdcToken), _amount, address(i_linkToken), fees ); // Return the message ID return messageId; } /// @notice Allows the owner of the contract to withdraw all LINK tokens in the contract and transfer them to a /// beneficiary. /// @dev This function reverts with a 'NothingToWithdraw' error if there are no tokens to withdraw. /// @param _beneficiary The address to which the tokens will be sent. function withdrawLinkToken( address _beneficiary ) public onlyOwner { // Retrieve the balance of this contract uint256 amount = i_linkToken.balanceOf(address(this)); // Revert if there is nothing to withdraw if (amount == 0) revert NothingToWithdraw(); i_linkToken.safeTransfer(_beneficiary, amount); } /// @notice Allows the owner of the contract to withdraw all usdc tokens in the contract and transfer them to a /// beneficiary. /// @dev This function reverts with a 'NothingToWithdraw' error if there are no tokens to withdraw. /// @param _beneficiary The address to which the tokens will be sent. function withdrawUsdcToken( address _beneficiary ) public onlyOwner { // Retrieve the balance of this contract uint256 amount = i_usdcToken.balanceOf(address(this)); // Revert if there is nothing to withdraw if (amount == 0) revert NothingToWithdraw(); i_usdcToken.safeTransfer(_beneficiary, amount); } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {IRouterClient} from \\\"@chainlink/contracts-ccip/contracts/interfaces/IRouterClient.sol\\\"; import {Client} from \\\"@chainlink/contracts-ccip/contracts/libraries/Client.sol\\\"; import {OwnerIsCreator} from \\\"@chainlink/contracts@1.4.0/src/v0.8/shared/access/OwnerIsCreator.sol\\\"; import {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\"; import {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY. * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE. * DO NOT USE THIS CODE IN PRODUCTION. */ interface IStaker { function stake( address beneficiary, uint256 amount ) external; function redeem() external; } /// @title - A simple messenger contract for transferring tokens to a receiver that calls a staker contract. contract Sender is OwnerIsCreator { using SafeERC20 for IERC20; // Custom errors to provide more descriptive revert messages. error InvalidRouter(); // Used when the router address is 0 error InvalidLinkToken(); // Used when the link token address is 0 error InvalidUsdcToken(); // Used when the usdc token address is 0 error NotEnoughBalance(uint256 currentBalance, uint256 calculatedFees); // Used to make sure contract has enough // balance to cover the fees. error NothingToWithdraw(); // Used when trying to withdraw Ether but there's nothing to withdraw. error InvalidDestinationChain(); // Used when the destination chain selector is 0. error InvalidReceiverAddress(); // Used when the receiver address is 0. error NoReceiverOnDestinationChain(uint64 destinationChainSelector); // Used when the receiver address is 0 for a // given destination chain. error AmountIsZero(); // Used if the amount to transfer is 0. error InvalidGasLimit(); // Used if the gas limit is 0. error NoGasLimitOnDestinationChain(uint64 destinationChainSelector); // Used when the gas limit is 0. // Event emitted when a message is sent to another chain. // The chain selector of the destination chain. // The address of the receiver contract on the destination chain. // The beneficiary of the staked tokens on the destination chain. // The token address that was transferred. // The token amount that was transferred. // the token address used to pay CCIP fees. // The fees paid for sending the message. event MessageSent( // The unique ID of the CCIP message. bytes32 indexed messageId, uint64 indexed destinationChainSelector, address indexed receiver, address beneficiary, address token, uint256 tokenAmount, address feeToken, uint256 fees ); IRouterClient private immutable i_router; IERC20 private immutable i_linkToken; IERC20 private immutable i_usdcToken; // Mapping to keep track of the receiver contract per destination chain. mapping(uint64 => address) public s_receivers; // Mapping to store the gas limit per destination chain. mapping(uint64 => uint256) public s_gasLimits; modifier validateDestinationChain( uint64 _destinationChainSelector ) { if (_destinationChainSelector == 0) revert InvalidDestinationChain(); _; } /// @notice Constructor initializes the contract with the router address. /// @param _router The address of the router contract. /// @param _link The address of the link contract. /// @param _usdcToken The address of the usdc contract. constructor( address _router, address _link, address _usdcToken ) { if (_router == address(0)) revert InvalidRouter(); if (_link == address(0)) revert InvalidLinkToken(); if (_usdcToken == address(0)) revert InvalidUsdcToken(); i_router = IRouterClient(_router); i_linkToken = IERC20(_link); i_usdcToken = IERC20(_usdcToken); } /// @dev Set the receiver contract for a given destination chain. /// @notice This function can only be called by the owner. /// @param _destinationChainSelector The selector of the destination chain. /// @param _receiver The receiver contract on the destination chain . function setReceiverForDestinationChain( uint64 _destinationChainSelector, address _receiver ) external onlyOwner validateDestinationChain(_destinationChainSelector) { if (_receiver == address(0)) revert InvalidReceiverAddress(); s_receivers[_destinationChainSelector] = _receiver; } /// @dev Set the gas limit for a given destination chain. /// @notice This function can only be called by the owner. /// @param _destinationChainSelector The selector of the destination chain. /// @param _gasLimit The gas limit on the destination chain . function setGasLimitForDestinationChain( uint64 _destinationChainSelector, uint256 _gasLimit ) external onlyOwner validateDestinationChain(_destinationChainSelector) { if (_gasLimit == 0) revert InvalidGasLimit(); s_gasLimits[_destinationChainSelector] = _gasLimit; } /// @dev Delete the receiver contract for a given destination chain. /// @notice This function can only be called by the owner. /// @param _destinationChainSelector The selector of the destination chain. function deleteReceiverForDestinationChain( uint64 _destinationChainSelector ) external onlyOwner validateDestinationChain(_destinationChainSelector) { if (s_receivers[_destinationChainSelector] == address(0)) { revert NoReceiverOnDestinationChain(_destinationChainSelector); } delete s_receivers[_destinationChainSelector]; } /// @notice Sends data and transfer tokens to receiver on the destination chain. /// @notice Pay for fees in LINK. /// @dev Assumes your contract has sufficient LINK to pay for CCIP fees. /// @param _destinationChainSelector The identifier (aka selector) for the destination blockchain. /// @param _beneficiary The address of the beneficiary of the staked tokens on the destination blockchain. /// @param _amount token amount. /// @return messageId The ID of the CCIP message that was sent. function sendMessagePayLINK( uint64 _destinationChainSelector, address _beneficiary, uint256 _amount ) external onlyOwner validateDestinationChain(_destinationChainSelector) returns (bytes32 messageId) { address receiver = s_receivers[_destinationChainSelector]; if (receiver == address(0)) { revert NoReceiverOnDestinationChain(_destinationChainSelector); } if (_amount == 0) revert AmountIsZero(); uint256 gasLimit = s_gasLimits[_destinationChainSelector]; if (gasLimit == 0) { revert NoGasLimitOnDestinationChain(_destinationChainSelector); } // Create an EVM2AnyMessage struct in memory with necessary information for sending a cross-chain message // address(linkToken) means fees are paid in LINK Client.EVMTokenAmount[] memory tokenAmounts = new Client.EVMTokenAmount[](1); tokenAmounts[0] = Client.EVMTokenAmount({token: address(i_usdcToken), amount: _amount}); // Create an EVM2AnyMessage struct in memory with necessary information for sending a cross-chain message Client.EVM2AnyMessage memory evm2AnyMessage = Client.EVM2AnyMessage({ receiver: abi.encode(receiver), // ABI-encoded receiver address data: abi.encodeWithSelector(IStaker.stake.selector, _beneficiary, _amount), // Encode the function selector and // the arguments of the stake function tokenAmounts: tokenAmounts, // The amount and type of token being transferred extraArgs: Client._argsToBytes( // Additional arguments, setting gas limit and allowing out-of-order execution. // Best Practice: For simplicity, the values are hardcoded. It is advisable to use a more dynamic approach // where you set the extra arguments off-chain. This allows adaptation depending on the lanes, messages, // and ensures compatibility with future CCIP upgrades. Read more about it here: // https://docs.chain.link/ccip/concepts/best-practices/evm#using-extraargs Client.GenericExtraArgsV2({ gasLimit: gasLimit, // Gas limit for the callback on the destination chain allowOutOfOrderExecution: true // Allows the message to be executed out of order relative to other messages // from // the same sender }) ), // Set the feeToken to a feeTokenAddress, indicating specific asset will be used for fees feeToken: address(i_linkToken) }); // Get the fee required to send the CCIP message uint256 fees = i_router.getFee(_destinationChainSelector, evm2AnyMessage); if (fees > i_linkToken.balanceOf(address(this))) { revert NotEnoughBalance(i_linkToken.balanceOf(address(this)), fees); } // approve the Router to transfer LINK tokens on contract's behalf. It will spend the fees in LINK i_linkToken.approve(address(i_router), fees); // approve the Router to spend usdc tokens on contract's behalf. It will spend the amount of the given token i_usdcToken.approve(address(i_router), _amount); // Send the message through the router and store the returned message ID messageId = i_router.ccipSend(_destinationChainSelector, evm2AnyMessage); // Emit an event with message details emit MessageSent( messageId, _destinationChainSelector, receiver, _beneficiary, address(i_usdcToken), _amount, address(i_linkToken), fees ); // Return the message ID return messageId; } /// @notice Allows the owner of the contract to withdraw all LINK tokens in the contract and transfer them to a /// beneficiary. /// @dev This function reverts with a 'NothingToWithdraw' error if there are no tokens to withdraw. /// @param _beneficiary The address to which the tokens will be sent. function withdrawLinkToken( address _beneficiary ) public onlyOwner { // Retrieve the balance of this contract uint256 amount = i_linkToken.balanceOf(address(this)); // Revert if there is nothing to withdraw if (amount == 0) revert NothingToWithdraw(); i_linkToken.safeTransfer(_beneficiary, amount); } /// @notice Allows the owner of the contract to withdraw all usdc tokens in the contract and transfer them to a /// beneficiary. /// @dev This function reverts with a 'NothingToWithdraw' error if there are no tokens to withdraw. /// @param _beneficiary The address to which the tokens will be sent. function withdrawUsdcToken( address _beneficiary ) public onlyOwner { // Retrieve the balance of this contract uint256 amount = i_usdcToken.balanceOf(address(this)); // Revert if there is nothing to withdraw if (amount == 0) revert NothingToWithdraw(); i_usdcToken.safeTransfer(_beneficiary, amount); } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Explanation\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Explanation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sender Contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Sender Contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Staker Contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Staker Contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transfer and Receive tokens and data and pay in LINK\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Transfer and Receive tokens and data and pay in LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices: Setting allowOutOfOrderExecution\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\\\"};duplicate=1\",\"expected\":\"Best Practices: Setting allowOutOfOrderExecution -> /ccip/concepts/best-practices/evm#setting-allowoutoforderexecution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Best Practices\\\",\\\"url\\\":\\\"/ccip/concepts/best-practices/evm\\\"};duplicate=1\",\"expected\":\"Best Practices -> /ccip/concepts/best-practices/evm\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=1\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=2\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Directory\\\",\\\"url\\\":\\\"/ccip/directory\\\"};duplicate=3\",\"expected\":\"CCIP Directory -> /ccip/directory\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP Service Limits\\\",\\\"url\\\":\\\"/ccip/service-limits\\\"};duplicate=1\",\"expected\":\"CCIP Service Limits -> /ccip/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CCIP explorer\\\",\\\"url\\\":\\\"https://ccip.chain.link/\\\"};duplicate=1\",\"expected\":\"CCIP explorer -> https://ccip.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"GenericExtraArgsV2\\\",\\\"url\\\":\\\"/ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\\\"};duplicate=1\",\"expected\":\"GenericExtraArgsV2 -> /ccip/api-reference/evm/v1.6.1/client#genericextraargsv2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open the Receiver contract in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/usdc/Receiver.sol&autoCompile=true\\\"};duplicate=1\",\"expected\":\"Open the Receiver contract in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/CCIP/usdc/Receiver.sol&autoCompile=true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"contact the Chainlink Labs Team\\\",\\\"url\\\":\\\"https://chain.link/ccip-contact\\\"};duplicate=1\",\"expected\":\"contact the Chainlink Labs Team -> https://chain.link/ccip-contact\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/tx/0x5e066ec7e94496e1547c368df4199b9f0c4f8f6c82012b2d974aa258a5c9e9fe\\\"};duplicate=1\",\"expected\":\"example -> https://testnet.snowtrace.io/tx/0x5e066ec7e94496e1547c368df4199b9f0c4f8f6c82012b2d974aa258a5c9e9fe\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Avalanche message details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Avalanche message details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Avalanche message details)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink CCIP Avalanche message details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details success)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Explorer transaction details)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Explorer transaction details)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink CCIP Staker tokens balance)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink CCIP Staker tokens balance)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). Read the\\\"};duplicate=1\",\"expected\":\"). Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\\\"};duplicate=1\",\"expected\":\". If you encounter a transaction failure due to these gas price spikes, please add additional LINK tokens to your contract and try again. Alternatively, you can use a supported testnet other than Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\\\"};duplicate=1\",\"expected\":\"0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\\\"};duplicate=1\",\"expected\":\"0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238\\\"};duplicate=1\",\"expected\":\"0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238\\\"};duplicate=2\",\"expected\":\"0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x5425890298aed601595a70AB815c96711a31Bc65\\\"};duplicate=1\",\"expected\":\"0x5425890298aed601595a70AB815c96711a31Bc65\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xf694e193200268f9a4868e4aa017a0118c9a8177\\\"};duplicate=1\",\"expected\":\"0xf694e193200268f9a4868e4aa017a0118c9a8177\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000\\\"};duplicate=1\",\"expected\":\"1000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=2\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=3\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"200000\\\"};duplicate=1\",\"expected\":\"200000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"70\\\"};duplicate=1\",\"expected\":\"70\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is successful, record the transaction hash. Here is an\\\"};duplicate=1\",\"expected\":\"After the transaction is successful, record the transaction hash. Here is an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=1\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=2\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Argument\\\"};duplicate=3\",\"expected\":\"Argument\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this point:\\\"};duplicate=1\",\"expected\":\"At this point:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Best Practices\\\"};duplicate=1\",\"expected\":\"CAUTION: Best Practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\\\"};duplicate=1\",\"expected\":\"CCIP Chain identifier of the destination blockchain (Ethereum Sepolia in this example). You can find each chain selector on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the balanceOf function with the beneficiary address.\\\"};duplicate=1\",\"expected\":\"Call the balanceOf function with the beneficiary address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the redeem function with the amount of Staker tokens to redeem. In this example, the beneficiary will redeem 1,000,000 Staker tokens. When confirming, MetaMask will confirm that you will transfer the Staker tokens in exchange for USDC tokens.\\\"};duplicate=1\",\"expected\":\"Call the redeem function with the amount of Staker tokens to redeem. In this example, the beneficiary will redeem 1,000,000 Staker tokens. When confirming, MetaMask will confirm that you will transfer the Staker tokens in exchange for USDC tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the balance of the beneficiary on the destination chain:\\\"};duplicate=1\",\"expected\":\"Check the balance of the beneficiary on the destination chain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact and confirm the transaction on MetaMask.\\\"};duplicate=1\",\"expected\":\"Click on transact and confirm the transaction on MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list.\\\"};duplicate=1\",\"expected\":\"Click the transact button. After you confirm the transaction, the contract address appears on the Deployed Contracts list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compile your contract.\\\"};duplicate=1\",\"expected\":\"Compile your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the necessary fees using the router's getFee function.\\\"};duplicate=1\",\"expected\":\"Computes the necessary fees using the router's getFee function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configure the Receiver contract to receive CCIP messages from the Sender contract:\\\"};duplicate=1\",\"expected\":\"Configure the Receiver contract to receive CCIP messages from the Sender contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configure the Sender contract on Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Configure the Sender contract on Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Confirm the transaction on MetaMask. After the transaction is successful, the beneficiary will receive 1 USDC tokens.\\\"};duplicate=1\",\"expected\":\"Confirm the transaction on MetaMask. After the transaction is successful, the beneficiary will receive 1 USDC tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Constructs a CCIP message using the EVM2AnyMessage struct.\\\"};duplicate=1\",\"expected\":\"Constructs a CCIP message using the EVM2AnyMessage struct.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the Receiver contract:\\\"};duplicate=1\",\"expected\":\"Deploy the Receiver contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend function.\\\"};duplicate=1\",\"expected\":\"Dispatches the CCIP message to the destination chain by executing the router's ccipSend function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\\\"};duplicate=1\",\"expected\":\"Do Not Hardcode extraArgs: In this example, extraArgs are hardcoded within the contract for simplicity. It is recommended to make extraArgs mutable. For instance, you can construct extraArgs off-chain and pass them into your function calls, or store them in a storage variable that can be updated as needed. This approach ensures that extraArgs remain backward compatible with future CCIP upgrades. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emits a MessageSent event.\\\"};duplicate=1\",\"expected\":\"Emits a MessageSent event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures the contract has enough LINK to cover the fees and approves the router transfer of LINK on its behalf.\\\"};duplicate=1\",\"expected\":\"Ensures the contract has enough LINK to cover the fees and approves the router transfer of LINK on its behalf.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the sendMessagePayLINK function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the sendMessagePayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the setGasLimitForDestinationChain: function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the setGasLimitForDestinationChain: function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the setReceiverForDestinationChain function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the setReceiverForDestinationChain function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the arguments of the setSenderForSourceChain function:\\\"};duplicate=1\",\"expected\":\"Fill in the arguments of the setSenderForSourceChain function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in your blockchain's router, LINK, and Staker contract addresses. The router and usdc addresses can be found on the\\\"};duplicate=1\",\"expected\":\"Fill in your blockchain's router, LINK, and Staker contract addresses. The router and usdc addresses can be found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\\\"};duplicate=1\",\"expected\":\"Following these best practices ensures that your contract is robust, future-proof, and compliant with CCIP standards.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fund your contract with LINK tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Fund your contract with LINK tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask and that you are still connected to Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, make sure the environment is still Injected Provider - MetaMask and that you are still connected to Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Receiver contract deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Receiver contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Sender contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Sender contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Staker contract deployed on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Staker contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Staker contract deployed on Ethereum Sepolia.\\\"};duplicate=2\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your Staker contract deployed on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"In Remix IDE, under Deploy & Run Transactions, open the list of transactions of your smart contract deployed on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializing the contract:\\\"};duplicate=1\",\"expected\":\"Initializing the contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK contract address:\\\"};duplicate=1\",\"expected\":\"LINK contract address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\\\"};duplicate=1\",\"expected\":\"LINK to your contract. In this example, LINK is used to pay the CCIP fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Make sure you are connected with the beneficiary account.\\\"};duplicate=1\",\"expected\":\"Make sure you are connected with the beneficiary account.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Gas price spikes\\\"};duplicate=1\",\"expected\":\"NOTE: Gas price spikes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\\\"};duplicate=1\",\"expected\":\"NOTE: Integrate Chainlink CCIP v1.6.2 into your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note your contract address.\\\"};duplicate=1\",\"expected\":\"Note your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Notice that the balance of the beneficiary is 1,000,000 Staker tokens. The Staker contract has the same number of decimals as the USDC token, which is 6. This means the beneficiary has 1 USDC staked and can redeem it by providing the same amount of Staker tokens.\\\"};duplicate=1\",\"expected\":\"Notice that the balance of the beneficiary is 1,000,000 Staker tokens. The Staker contract has the same number of decimals as the USDC token, which is 6. This means the beneficiary has 1 USDC staked and can redeem it by providing the same amount of Staker tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and fund your contract with USDC tokens. You can transfer\\\"};duplicate=1\",\"expected\":\"Open MetaMask and fund your contract with USDC tokens. You can transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and make sure the network is Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and make sure the network is Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Avalanche Fuji.\\\"};duplicate=2\",\"expected\":\"Open MetaMask and select the network Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and select the network Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and select the network Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the\\\"};duplicate=1\",\"expected\":\"Open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Redeem the staked tokens:\\\"};duplicate=1\",\"expected\":\"Redeem the staked tokens:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router address:\\\"};duplicate=1\",\"expected\":\"Router address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Router address:\\\"};duplicate=2\",\"expected\":\"Router address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Staker address: Copied from the previous step\\\"};duplicate=1\",\"expected\":\"Staker address: Copied from the previous step\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP transaction is completed once the status is marked as \\\\\\\"Success\\\\\\\". In this example, the CCIP message ID is 0xcb0fad9eec6664ad959f145cc4eb023924faded08baefc29952205ee37da7f13.\\\"};duplicate=1\",\"expected\":\"The CCIP transaction is completed once the status is marked as \\\"Success\\\". In this example, the CCIP message ID is 0xcb0fad9eec6664ad959f145cc4eb023924faded08baefc29952205ee37da7f13.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Sender contract is responsible for initiating the transfer of USDC tokens and data. Here's how it works:\\\"};duplicate=1\",\"expected\":\"The Sender contract is responsible for initiating the transfer of USDC tokens and data. Here's how it works:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Staker contract manages the staking and redemption of USDC tokens. Here's how it works:\\\"};duplicate=1\",\"expected\":\"The Staker contract manages the staking and redemption of USDC tokens. Here's how it works:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The beneficiary of the Staker tokens on Ethereum Sepolia. You can set your own EOA (Externally Owned Account) so you can redeem the Staker tokens in exchange for USDC tokens.\\\"};duplicate=1\",\"expected\":\"The beneficiary of the Staker tokens on Ethereum Sepolia. You can set your own EOA (Externally Owned Account) so you can redeem the Staker tokens in exchange for USDC tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector of Avalanche Fuji. You can find it on the\\\"};duplicate=1\",\"expected\":\"The chain selector of Avalanche Fuji. You can find it on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector of Ethereum Sepolia. You can find it on the\\\"};duplicate=1\",\"expected\":\"The chain selector of Ethereum Sepolia. You can find it on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The chain selector of Ethereum Sepolia. You can find it on the\\\"};duplicate=2\",\"expected\":\"The chain selector of Ethereum Sepolia. You can find it on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The gas limit for the execution of the CCIP message on the destination chain.\\\"};duplicate=1\",\"expected\":\"The gas limit for the execution of the CCIP message on the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The receiver contract address.\\\"};duplicate=1\",\"expected\":\"The receiver contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The sender contract address.\\\"};duplicate=1\",\"expected\":\"The sender contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The smart contracts featured in this tutorial are designed to interact with CCIP to send and receive USDC tokens and data across different blockchains. The contract code contains supporting comments clarifying the functions, events, and underlying logic. We will explain the Sender, Staker, and Receiver contracts further.\\\"};duplicate=1\",\"expected\":\"The smart contracts featured in this tutorial are designed to interact with CCIP to send and receive USDC tokens and data across different blockchains. The contract code contains supporting comments clarifying the functions, events, and underlying logic. We will explain the Sender, Staker, and Receiver contracts further.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The token amount (1 USDC).\\\"};duplicate=1\",\"expected\":\"The token amount (1 USDC).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"These addresses are essential for interacting with the CCIP router and handling token transfers.\\\"};duplicate=1\",\"expected\":\"These addresses are essential for interacting with the CCIP router and handling token transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\\\"};duplicate=1\",\"expected\":\"This example is simplified for educational purposes. For production code, please adhere to the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This function sends USDC tokens, the encoded function signature of the stake function, and arguments (beneficiary address and amount) to the Receiver contract on the destination chain.\\\"};duplicate=1\",\"expected\":\"This function sends USDC tokens, the encoded function signature of the stake function, and arguments (beneficiary address and amount) to the Receiver contract on the destination chain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfer tokens and data from Avalanche Fuji:\\\"};duplicate=1\",\"expected\":\"Transfer tokens and data from Avalanche Fuji:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"USDC contract address:\\\"};duplicate=1\",\"expected\":\"USDC contract address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"USDC contract address:\\\"};duplicate=2\",\"expected\":\"USDC contract address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"USDC to your contract.\\\"};duplicate=1\",\"expected\":\"USDC to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\\\"};duplicate=1\",\"expected\":\"Under normal circumstances, transactions on the Ethereum Sepolia network require significantly fewer tokens to pay for gas. However, during exceptional periods of high gas price spikes, your transactions may fail if not sufficiently funded. In such cases, you may need to fund your contract with additional tokens. We recommend paying for your CCIP transactions in LINK tokens (rather than native tokens) as you can obtain extra LINK testnet tokens from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand CCIP Service Limits: Review the\\\"};duplicate=1\",\"expected\":\"Understand CCIP Service Limits: Review the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\\\"};duplicate=1\",\"expected\":\"Understand allowOutOfOrderExecution Usage: This example sets allowOutOfOrderExecution to true (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\\\"};duplicate=1\",\"expected\":\"Validate the Destination Chain: Always ensure that the destination chain is valid and supported before sending messages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=1\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=2\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value and Description\\\"};duplicate=3\",\"expected\":\"Value and Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When deploying the contract, you define the router address, LINK contract address, and USDC contract address.\\\"};duplicate=1\",\"expected\":\"When deploying the contract, you define the router address, LINK contract address, and USDC contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You enabled the receiver contract to receive messages from the sender contract on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"You enabled the receiver contract to receive messages from the sender contract on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You enabled the sender contract to send messages to the receiver contract on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"You enabled the sender contract to send messages to the receiver contract on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You funded the sender contract with USDC and LINK tokens on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"You funded the sender contract with USDC and LINK tokens on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You have one sender contract on Avalanche Fuji, one staker contract and one receiver contract on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"You have one sender contract on Avalanche Fuji, one staker contract and one receiver contract on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You set the gas limit for the execution of the CCIP message on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"You set the gas limit for the execution of the CCIP message on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You will transfer 1 USDC and arbitrary data, which contains the encoded stake function name and parameters for calling Staker's stake function on the destination chain. The parameters contain the amount of staked tokens and the beneficiary address. The CCIP fees for using CCIP will be paid in LINK.\\\"};duplicate=1\",\"expected\":\"You will transfer 1 USDC and arbitrary data, which contains the encoded stake function name and parameters for calling Staker's stake function on the destination chain. The parameters contain the amount of staked tokens and the beneficiary address. The CCIP fees for using CCIP will be paid in LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your receiver contract address at Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Your receiver contract address at Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your sender contract address at Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"Your sender contract address at Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_amount\\\"};duplicate=1\",\"expected\":\"_amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_beneficiary\\\"};duplicate=1\",\"expected\":\"_beneficiary\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=1\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=2\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_destinationChainSelector\\\"};duplicate=3\",\"expected\":\"_destinationChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_gasLimit\\\"};duplicate=1\",\"expected\":\"_gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_receiver\\\"};duplicate=1\",\"expected\":\"_receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_sender\\\"};duplicate=1\",\"expected\":\"_sender\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_sourceChainSelector\\\"};duplicate=1\",\"expected\":\"_sourceChainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and search your cross-chain transaction using the transaction hash.\\\"};duplicate=1\",\"expected\":\"and search your cross-chain transaction using the transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the Staker contract address from the previous step. For Ethereum Sepolia, the addresses are:\\\"};duplicate=1\",\"expected\":\"and the Staker contract address from the previous step. For Ethereum Sepolia, the addresses are:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\\\"};duplicate=1\",\"expected\":\"for constraints on message data size, execution gas, and the number of tokens per transaction. If your requirements exceed these limits, you may need to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of a transaction on Avalanche Fuji.\\\"};duplicate=1\",\"expected\":\"of a transaction on Avalanche Fuji.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sendMessagePayLINK function:\\\"};duplicate=1\",\"expected\":\"sendMessagePayLINK function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about this parameter.\\\"};duplicate=1\",\"expected\":\"to learn more about this parameter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=16\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/evm/usdc\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=10\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=11\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=12\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=13\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=14\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=15\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=16\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=17\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=18\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=19\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=20\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=21\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=22\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=23\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=24\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=25\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=26\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=27\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=28\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=29\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=30\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=31\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=32\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=33\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=34\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=35\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=36\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=37\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=38\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=39\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=40\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=41\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=42\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=7\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=8\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=9\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=10\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=11\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=12\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=13\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=14\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=15\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=16\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=17\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=18\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=19\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=20\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=21\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=22\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=23\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=24\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=25\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=26\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=27\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=28\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=29\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=30\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=31\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=32\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=33\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=34\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=35\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=36\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=37\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=38\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=39\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=40\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=41\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=42\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=43\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=44\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=45\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=46\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=47\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=48\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=49\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=50\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=51\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=7\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=8\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/lock-release-multisig\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=9\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=10\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=11\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=12\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=13\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=14\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=15\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=16\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=17\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=18\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=19\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=20\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=21\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=22\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=23\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=24\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=25\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=26\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=27\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=28\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=29\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=30\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=31\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=32\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=33\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=34\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=35\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=36\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=37\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=38\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=39\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=40\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=41\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=42\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=43\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=44\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=45\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=46\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=47\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=48\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=7\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=8\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/production-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=9\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=10\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=11\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=12\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=13\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=14\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=15\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=16\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=17\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=18\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=19\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=20\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=21\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=22\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=23\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=24\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=25\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=26\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=27\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=28\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=29\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=30\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=31\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=32\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=33\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=34\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=35\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=36\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=37\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=38\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=39\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=40\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=41\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=42\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=43\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=44\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=7\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=8\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/cross-chain-tokens/spl-token-multisig-tutorial\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=9\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/destination/arbitrary-messaging\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/receivers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/receivers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/svm/source/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/source/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/svm/source/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/ton/destination/arbitrary-messaging\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/ton/destination/arbitrary-messaging\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/ton/destination/arbitrary-messaging\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/ton/destination/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/ton/receivers\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"ccip/tutorials/ton/source/arbitrary-messaging\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"ccip/tutorials/ton/source/build-messages\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"GitHubCard\\\",\\\"reason\\\":\\\"Unsupported MDX component GitHubCard\\\"};duplicate=1\",\"component\":\"GitHubCard\",\"reason\":\"Unsupported MDX component GitHubCard\"}", + "{\"path\":\"ccip/tutorials/ton/source/build-messages\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-automation\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/guides/cancel-upkeep\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/guides/cancel-upkeep\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"UpkeepLookup\\\",\\\"reason\\\":\\\"Unsupported MDX component UpkeepLookup\\\"};duplicate=1\",\"component\":\"UpkeepLookup\",\"reason\":\"Unsupported MDX component UpkeepLookup\"}", + "{\"path\":\"chainlink-automation/guides/compatible-contracts\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/guides/compatible-contracts\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=2\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=1\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=2\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=3\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=4\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=5\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=6\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00000000000000000000000000\\\"};duplicate=7\",\"expected\":\"00000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0000000000000000000000014c\\\"};duplicate=1\",\"expected\":\"0000000000000000000000014c\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0000000000000000000000029a\\\"};duplicate=1\",\"expected\":\"0000000000000000000000029a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"000000000000000000000003e7\\\"};duplicate=1\",\"expected\":\"000000000000000000000003e7\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0000000000014d000000000000\\\"};duplicate=1\",\"expected\":\"0000000000014d000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0000000000029b000000000000\\\"};duplicate=1\",\"expected\":\"0000000000029b000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x000000000000000000000000\\\"};duplicate=2\",\"expected\":\"0x000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x000000000000000000000000\\\"};duplicate=3\",\"expected\":\"0x000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lowerBound: 0\\\"};duplicate=1\",\"expected\":\"lowerBound: 0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lowerBound: 333\\\"};duplicate=1\",\"expected\":\"lowerBound: 333\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lowerBound: 667\\\"};duplicate=1\",\"expected\":\"lowerBound: 667\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"upperBound: 332\\\"};duplicate=1\",\"expected\":\"upperBound: 332\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"upperBound: 666\\\"};duplicate=1\",\"expected\":\"upperBound: 666\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"upperBound: 999\\\"};duplicate=1\",\"expected\":\"upperBound: 999\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=14\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=15\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/flexible-upkeeps\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/forwarder\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-automation/guides/gas-price-threshold\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract CountEmitLog { event WantsToCount(address indexed msgSender); constructor() {} function emitCountLog() public { emit WantsToCount(msg.sender); } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract CountEmitLog { event WantsToCount(address indexed msgSender); constructor() {} function emitCountLog() public { emit WantsToCount(msg.sender); } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; struct Log { uint256 index; // Index of the log in the block uint256 timestamp; // Timestamp of the block containing the log bytes32 txHash; // Hash of the transaction containing the log uint256 blockNumber; // Number of the block containing the log bytes32 blockHash; // Hash of the block containing the log address source; // Address of the contract that emitted the log bytes32[] topics; // Indexed topics of the log bytes data; // Data of the log } interface ILogAutomation { function checkLog( Log calldata log, bytes memory checkData ) external returns (bool upkeepNeeded, bytes memory performData); function performUpkeep( bytes calldata performData ) external; } contract CountWithLog is ILogAutomation { event CountedBy(address indexed msgSender); uint256 public counted = 0; constructor() {} function checkLog( Log calldata log, bytes memory ) external pure returns (bool upkeepNeeded, bytes memory performData) { upkeepNeeded = true; address logSender = bytes32ToAddress(log.topics[1]); performData = abi.encode(logSender); } function performUpkeep( bytes calldata performData ) external override { counted += 1; address logSender = abi.decode(performData, (address)); emit CountedBy(logSender); } function bytes32ToAddress( bytes32 _address ) public pure returns (address) { return address(uint160(uint256(_address))); } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; struct Log { uint256 index; // Index of the log in the block uint256 timestamp; // Timestamp of the block containing the log bytes32 txHash; // Hash of the transaction containing the log uint256 blockNumber; // Number of the block containing the log bytes32 blockHash; // Hash of the block containing the log address source; // Address of the contract that emitted the log bytes32[] topics; // Indexed topics of the log bytes data; // Data of the log } interface ILogAutomation { function checkLog( Log calldata log, bytes memory checkData ) external returns (bool upkeepNeeded, bytes memory performData); function performUpkeep( bytes calldata performData ) external; } contract CountWithLog is ILogAutomation { event CountedBy(address indexed msgSender); uint256 public counted = 0; constructor() {} function checkLog( Log calldata log, bytes memory ) external pure returns (bool upkeepNeeded, bytes memory performData) { upkeepNeeded = true; address logSender = bytes32ToAddress(log.topics[1]); performData = abi.encode(logSender); } function performUpkeep( bytes calldata performData ) external override { counted += 1; address logSender = abi.decode(performData, (address)); emit CountedBy(logSender); } function bytes32ToAddress( bytes32 _address ) public pure returns (address) { return address(uint160(uint256(_address))); } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Complete upkeep registration\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Complete upkeep registration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Connecting your wallet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Connecting your wallet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Emit a log\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Emit a log\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Entering upkeep details\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Entering upkeep details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Performing upkeep\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Performing upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Trigger selection\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Trigger selection\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Understanding maximum logs processed\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Understanding maximum logs processed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Using ILogAutomation Interface\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Using ILogAutomation Interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Using log triggers\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Using log triggers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Using the Chainlink Automation App\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Using the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation economics\\\",\\\"url\\\":\\\"/chainlink-automation/overview/automation-economics\\\"};duplicate=1\",\"expected\":\"Automation economics -> /chainlink-automation/overview/automation-economics\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation supported blockchain networks\\\",\\\"url\\\":\\\"/chainlink-automation/overview/supported-networks\\\"};duplicate=1\",\"expected\":\"Automation supported blockchain networks -> /chainlink-automation/overview/supported-networks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation-compatible contract\\\",\\\"url\\\":\\\"/chainlink-automation/guides/compatible-contracts\\\"};duplicate=1\",\"expected\":\"Automation-compatible contract -> /chainlink-automation/guides/compatible-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ILogAutomation interface\\\",\\\"url\\\":\\\"/chainlink-automation/reference/automation-interfaces#ilogautomation\\\"};duplicate=1\",\"expected\":\"ILogAutomation interface -> /chainlink-automation/reference/automation-interfaces#ilogautomation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ILogAutomation interface\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol\\\"};duplicate=1\",\"expected\":\"ILogAutomation interface -> https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK Token Contracts\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK Token Contracts -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Managing Upkeeps\\\",\\\"url\\\":\\\"/chainlink-automation/guides/manage-upkeeps\\\"};duplicate=1\",\"expected\":\"Managing Upkeeps -> /chainlink-automation/guides/manage-upkeeps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Service Limits\\\",\\\"url\\\":\\\"/chainlink-automation/overview/service-limits\\\"};duplicate=1\",\"expected\":\"Service Limits -> /chainlink-automation/overview/service-limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"best practices\\\",\\\"url\\\":\\\"/chainlink-automation/concepts/best-practice\\\"};duplicate=1\",\"expected\":\"best practices -> /chainlink-automation/concepts/best-practice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"convert Chainlink tokens (LINK) to be ERC-677 compatible\\\",\\\"url\\\":\\\"https://pegswap.chain.link/\\\"};duplicate=1\",\"expected\":\"convert Chainlink tokens (LINK) to be ERC-677 compatible -> https://pegswap.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"registry\\\",\\\"url\\\":\\\"/chainlink-automation/overview/supported-networks\\\"};duplicate=1\",\"expected\":\"registry -> /chainlink-automation/overview/supported-networks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=1\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=10\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=11\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=2\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=3\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=4\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=5\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=6\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=7\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=8\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=9\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Upkeep Registration Success Message)\\\"};duplicate=1\",\"expected\":\"(Image: Upkeep Registration Success Message)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Use\\\"};duplicate=1\",\"expected\":\". Use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Automation processes a limited number of logs per block per upkeep. See the\\\"};duplicate=1\",\"expected\":\"Chainlink Automation processes a limited number of logs per block per upkeep. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check data: Optional input field that you may use depending on whether you are using it in your contract.\\\"};duplicate=1\",\"expected\":\"Check data: Optional input field that you may use depending on whether you are using it in your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Register upkeep and confirm the transaction in MetaMask.\\\"};duplicate=1\",\"expected\":\"Click Register upkeep and confirm the transaction in MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Write Contract and click the emitCountLog button to emit a log.\\\"};duplicate=1\",\"expected\":\"Click Write Contract and click the emitCountLog button to emit a log.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Register New Upkeep button.\\\"};duplicate=1\",\"expected\":\"Click the Register New Upkeep button.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy the address of this contract either via Remix or Etherscan to register it on the Chainlink Automation app.\\\"};duplicate=1\",\"expected\":\"Copy the address of this contract either via Remix or Etherscan to register it on the Chainlink Automation app.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create powerful smart contracts that use log data as both trigger and input. This guide explains how to create log-trigger upkeeps.\\\"};duplicate=1\",\"expected\":\"Create powerful smart contracts that use log data as both trigger and input. This guide explains how to create log-trigger upkeeps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the contract and confirm the transaction.\\\"};duplicate=1\",\"expected\":\"Deploy the contract and confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the contract and confirm your transaction.\\\"};duplicate=1\",\"expected\":\"Deploy the contract and confirm your transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Follow the\\\"};duplicate=1\",\"expected\":\"Follow the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For funding on Mainnet, you need ERC-677 LINK. Many token bridges give you ERC-20 LINK tokens. Use PegSwap to\\\"};duplicate=1\",\"expected\":\"For funding on Mainnet, you need ERC-677 LINK. Many token bridges give you ERC-20 LINK tokens. Use PegSwap to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit: This is the maximum amount of gas that your transaction requires to execute on chain. This limit cannot exceed the performGasLimit value configured on the\\\"};duplicate=1\",\"expected\":\"Gas limit: This is the maximum amount of gas that your transaction requires to execute on chain. This limit cannot exceed the performGasLimit value configured on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you do not already have a wallet connected with the Chainlink Automation network, the interface will prompt you to do so. Click the Connect Wallet button and follow the remaining prompts to connect your wallet to one of the\\\"};duplicate=1\",\"expected\":\"If you do not already have a wallet connected with the Chainlink Automation network, the interface will prompt you to do so. Click the Connect Wallet button and follow the remaining prompts to connect your wallet to one of the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate back to Etherscan and locate the Events tab. You should see the event of emitting a log recorded in this section.\\\"};duplicate=1\",\"expected\":\"Navigate back to Etherscan and locate the Events tab. You should see the event of emitting a log recorded in this section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate back to the Etherscan page for CountEmitLog.sol. Under Write Contract, click the button to emitCountLog. Refresh the upkeep details page. You may have to wait a few moments. Under History, you should see the upkeep has been performed.\\\"};duplicate=1\",\"expected\":\"Navigate back to the Etherscan page for CountEmitLog.sol. Under Write Contract, click the button to emitCountLog. Refresh the upkeep details page. You may have to wait a few moments. Under History, you should see the upkeep has been performed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to the Contract tab. If the contract is already verified, you will see options to Read Contract and Write Contract. If your contract isn't verified, follow the prompts in Etherscan to verify the contract.\\\"};duplicate=1\",\"expected\":\"Navigate to the Contract tab. If the contract is already verified, you will see options to Read Contract and Write Contract. If your contract isn't verified, follow the prompts in Etherscan to verify the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open CountEmitLog.sol in Remix. This contract contains an event WantsToCount that keeps track of the address of the message sender. The function emitCountLog emits this event.\\\"};duplicate=1\",\"expected\":\"Open CountEmitLog.sol in Remix. This contract contains an event WantsToCount that keeps track of the address of the message sender. The function emitCountLog emits this event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open CountWithLog.sol in Remix. This contract contains a struct to account for the log structure and uses the\\\"};duplicate=1\",\"expected\":\"Open CountWithLog.sol in Remix. This contract contains a struct to account for the log structure and uses the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=1\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provide the address of the contract that will be emitting the log. In this case, this is the address of CountEmitLog.sol. If the contract is not validated you will need to provide the ABI.\\\"};duplicate=1\",\"expected\":\"Provide the address of the contract that will be emitting the log. In this case, this is the address of CountEmitLog.sol. If the contract is not validated you will need to provide the ABI.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provide the address of your\\\"};duplicate=1\",\"expected\":\"Provide the address of your\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provide the following information in the Automation app:\\\"};duplicate=1\",\"expected\":\"Provide the following information in the Automation app:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select Log Trigger.\\\"};duplicate=1\",\"expected\":\"Select Log Trigger.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Starting balance (LINK): Specify a LINK starting balance to fund your upkeep. See the\\\"};duplicate=1\",\"expected\":\"Starting balance (LINK): Specify a LINK starting balance to fund your upkeep. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP: ERC-677 Link\\\"};duplicate=1\",\"expected\":\"TIP: ERC-677 Link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP: Funding Upkeep\\\"};duplicate=1\",\"expected\":\"TIP: Funding Upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP: Reorg protection\\\"};duplicate=1\",\"expected\":\"TIP: Reorg protection\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP: Testing and best practices\\\"};duplicate=1\",\"expected\":\"TIP: Testing and best practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To find the ABI of your contract in Remix, navigate to the Compiler view using the left side icons. Then, copy the ABI to your clipboard using the button at the bottom of the panel.\\\"};duplicate=1\",\"expected\":\"To find the ABI of your contract in Remix, navigate to the Compiler view using the left side icons. Then, copy the ABI to your clipboard using the button at the bottom of the panel.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under Deployed Contracts, expand CountWithLog. Click the count button to view the value of the count variable. It should be 0.\\\"};duplicate=1\",\"expected\":\"Under Deployed Contracts, expand CountWithLog. Click the count button to view the value of the count variable. It should be 0.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under Environment, select the option Injected Provider to connect to your cryptocurrency wallet.\\\"};duplicate=1\",\"expected\":\"Under Environment, select the option Injected Provider to connect to your cryptocurrency wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Upkeep name: This will be visible in the Chainlink Automation app.\\\"};duplicate=1\",\"expected\":\"Upkeep name: This will be visible in the Chainlink Automation app.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Use the dropdown to select the triggering event. This is WantsToCount. You can also provide one optional filter per any of the indexed events in the log, but you don't have to. When this combination of filters are matched the upkeep will trigger.\\\"};duplicate=1\",\"expected\":\"Use the dropdown to select the triggering event. This is WantsToCount. You can also provide one optional filter per any of the indexed events in the log, but you don't have to. When this combination of filters are matched the upkeep will trigger.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can view the contract on Etherscan by clicking the message in the terminal. You an view the address of the created contract and the original contract in Etherscan.\\\"};duplicate=1\",\"expected\":\"You can view the contract on Etherscan by clicking the message in the terminal. You an view the address of the created contract and the original contract in Etherscan.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You should fund your contract with more LINK that you anticipate you will need. The network will not check or perform your Upkeep if your balance is too low based on current exchange rates. View the\\\"};duplicate=1\",\"expected\":\"You should fund your contract with more LINK that you anticipate you will need. The network will not check or perform your Upkeep if your balance is too low based on current exchange rates. View the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your email address (optional): This email address will be used to send you an email notification when your upkeep is underfunded.\\\"};duplicate=1\",\"expected\":\"Your email address (optional): This email address will be used to send you an email notification when your upkeep is underfunded.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your upkeeps will be displayed in your list of Active Upkeeps. You must monitor the balance of your upkeep. If the balance drops below the minimum balance, the Chainlink Automation Network will not perform the Upkeep. See\\\"};duplicate=1\",\"expected\":\"Your upkeeps will be displayed in your list of Active Upkeeps. You must monitor the balance of your upkeep. If the balance drops below the minimum balance, the Chainlink Automation Network will not perform the Upkeep. See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your upkeeps will be protected against logs that are emitted during a reorg.\\\"};duplicate=1\",\"expected\":\"Your upkeeps will be protected against logs that are emitted during a reorg.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for log automation. The interface contains the checkLog and performUpkeep functions. The contract contains an event CountedBy. The counted variable will be incremented when performUpkeep is called.\\\"};duplicate=1\",\"expected\":\"for log automation. The interface contains the checkLog and performUpkeep functions. The contract contains an event CountedBy. The counted variable will be incremented when performUpkeep is called.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page to find the correct contract address and access faucets for testnet LINK. This field is required. You must have LINK before you can use the Chainlink Automation service.\\\"};duplicate=1\",\"expected\":\"page to find the correct contract address and access faucets for testnet LINK. This field is required. You must have LINK before you can use the Chainlink Automation service.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page to learn about how logs are processed and how many logs you can expect to be processed per block on the chain you're using.\\\"};duplicate=1\",\"expected\":\"page to learn about how logs are processed and how many logs you can expect to be processed per block on the chain you're using.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page to learn more about the cost of using Chainlink Automation.\\\"};duplicate=1\",\"expected\":\"page to learn more about the cost of using Chainlink Automation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that you want to automate. In this case, we will paste the address of CountWithLog.sol. This contract must follow the format of the\\\"};duplicate=1\",\"expected\":\"that you want to automate. In this case, we will paste the address of CountWithLog.sol. This contract must follow the format of the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to ensure Automation nodes can interact with your contract as expected.\\\"};duplicate=1\",\"expected\":\"to ensure Automation nodes can interact with your contract as expected.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to get testnet LINK.\\\"};duplicate=1\",\"expected\":\"to get testnet LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn how to manage your upkeeps.\\\"};duplicate=1\",\"expected\":\"to learn how to manage your upkeeps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when creating a compatible contract and test your upkeep on a testnet before deploying it to a mainnet.\\\"};duplicate=1\",\"expected\":\"when creating a compatible contract and test your upkeep on a testnet before deploying it to a mainnet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/log-trigger\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Markdown parse error\\\",\\\"reason\\\":\\\"Unexpected end of file in expression, expected a corresponding closing brace for `{`\\\",\\\"servedText\\\":\\\"\\\\nCreate powerful smart contracts that use log data as both trigger and input. This guide explains how to create log-trigger upkeeps.> **TIP: Testing and best practices**\\\\n>\\\\n> Follow the [best practices](/chainlink-automation/concepts/best-practice) when creating a compatible contract and test\\\\n> your upkeep on a testnet before deploying it to a mainnet.## Understanding maximum logs processedChainlink Automation processes a limited number of logs per block per upkeep. See the [Service Limits](/chainlink-automation/overview/service-limits) page to learn about how logs are processed and how many logs you can expect to be processed per block on the chain you're using.## Emit a log1) Open `CountEmitLog.sol` in Remix. This contract contains an event `WantsToCount` that keeps track of the address of the message sender. The function `emitCountLog` emits this event. ```sol\\\\n// SPDX-License-Identifier: MIT\\\\npragma solidity ^0.8.20;\\\\n\\\\ncontract CountEmitLog {\\\\n event WantsToCount(address indexed msgSender);\\\\n\\\\n constructor() {}\\\\n\\\\n function emitCountLog() public {\\\\n emit WantsToCount(msg.sender);\\\\n }\\\\n}\\\\n```1) Under *Environment*, select the option **Injected Provider** to connect to your cryptocurrency wallet.\\\\n2) Deploy the contract and confirm the transaction.\\\\n3) You can view the contract on Etherscan by clicking the message in the terminal. You an view the address of the created contract and the original contract in Etherscan.\\\\n\\\\n ![Image](/images/automation/log-trig-addresses.png)\\\\n4) Navigate to the *Contract* tab. If the contract is already verified, you will see options to **Read Contract** and **Write Contract**. If your contract isn't verified, follow the prompts in Etherscan to verify the contract.\\\\n5) Click **Write Contract** and click the **emitCountLog** button to emit a log.\\\\n6) Navigate back to Etherscan and locate the *Events* tab. You should see the event of emitting a log recorded in this section.\\\\n\\\\n ![Image](/images/automation/log-trig-event.png)## Using `ILogAutomation` Interface1) Open `CountWithLog.sol` in Remix. This contract contains a struct to account for the log structure and uses the [ILogAutomation interface](/chainlink-automation/reference/automation-interfaces#ilogautomation) for log automation. The interface contains the `checkLog` and `performUpkeep` functions. The contract contains an event `CountedBy`. The `counted` variable will be incremented when `performUpkeep` is called. ```sol\\\\n// SPDX-License-Identifier: MIT\\\\npragma solidity ^0.8.20;\\\\n\\\\nstruct Log {\\\\n uint256 index; // Index of the log in the block\\\\n uint256 timestamp; // Timestamp of the block containing the log\\\\n bytes32 txHash; // Hash of the transaction containing the log\\\\n uint256 blockNumber; // Number of the block containing the log\\\\n bytes32 blockHash; // Hash of the block containing the log\\\\n address source; // Address of the contract that emitted the log\\\\n bytes32[] topics; // Indexed topics of the log\\\\n bytes data; // Data of the log\\\\n}\\\\n\\\\ninterface ILogAutomation {\\\\n function checkLog(\\\\n Log calldata log,\\\\n bytes memory checkData\\\\n ) external returns (bool upkeepNeeded, bytes memory performData);\\\\n\\\\n function performUpkeep(\\\\n bytes calldata performData\\\\n ) external;\\\\n}\\\\n\\\\ncontract CountWithLog is ILogAutomation {\\\\n event CountedBy(address indexed msgSender);\\\\n\\\\n uint256 public counted = 0;\\\\n\\\\n constructor() {}\\\\n\\\\n function checkLog(\\\\n Log calldata log,\\\\n bytes memory\\\\n ) external pure returns (bool upkeepNeeded, bytes memory performData) {\\\\n upkeepNeeded = true;\\\\n address logSender = bytes32ToAddress(log.topics[1]);\\\\n performData = abi.encode(logSender);\\\\n }\\\\n\\\\n function performUpkeep(\\\\n bytes calldata performData\\\\n ) external override {\\\\n counted += 1;\\\\n address logSender = abi.decode(performData, (address));\\\\n emit CountedBy(logSender);\\\\n }\\\\n\\\\n function bytes32ToAddress(\\\\n bytes32 _address\\\\n ) public pure returns (address) {\\\\n return address(uint160(uint256(_address)));\\\\n }\\\\n}\\\\n```1) Deploy the contract and confirm your transaction.\\\\n2) Under *Deployed Contracts*, expand `CountWithLog`. Click the **count** button to view the value of the count variable. It should be 0.\\\\n\\\\n ![Image](/images/automation/log-trig-count-0.png)\\\\n3) Copy the address of this contract either via Remix or Etherscan to register it on the Chainlink Automation app.## Using the Chainlink Automation App**Click the Register New Upkeep button.**![Image](/images/automation/auto-ui-home.png)### Connecting your walletIf you do not already have a wallet connected with the Chainlink Automation network, the interface will prompt you to do so. Click the **Connect Wallet** button and follow the remaining prompts to connect your wallet to one of the [Automation supported blockchain networks](/chainlink-automation/overview/supported-networks).![Image](/images/automation/auto-ui-wallet.png)## Trigger selectionSelect **Log Trigger**.![Image](/images/automation/ui_select_trigger.png)## Using log triggers> **TIP: Reorg protection**\\\\n>\\\\n> Your upkeeps will be protected against logs that are emitted during a reorg.1. **Provide the address of your [Automation-compatible contract](/chainlink-automation/guides/compatible-contracts)** that you want to automate. In this case, we will paste the address of `CountWithLog.sol`. This contract must follow the format of the [ILogAutomation interface](https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol) to ensure Automation nodes can interact with your contract as expected.\\\\n\\\\n ![Image](/images/automation/log_trig_1_upkeep_address.png)\\\\n\\\\n2. **Provide the address of the contract that will be emitting the log.** In this case, this is the address of `CountEmitLog.sol`. If the contract is not validated you will need to provide the ABI.\\\\n\\\\n ![Image](/images/automation/log_trig_2_emitter_address.png)\\\\n\\\\n To find the ABI of your contract in Remix, navigate to the Compiler view using the left side icons. Then, copy the ABI to your clipboard using the button at the bottom of the panel.\\\\n\\\\n ![Image](/images/automation/log-trig-ebi.png)\\\\n\\\\n3. **Use the dropdown to select the triggering event.** This is **WantsToCount**. You can also provide one optional filter per any of the indexed events in the log, but you don't have to. When this combination of filters are matched the upkeep will trigger.\\\\n\\\\n ![Image](/images/automation/log_trig_3_logsig_filter_populated.png)## Entering upkeep detailsProvide the following information in the Automation app:* **Upkeep name**: This will be visible in the Chainlink Automation app.\\\\n\\\\n* **Gas limit**: This is the maximum amount of gas that your transaction requires to execute on chain. This limit cannot exceed the `performGasLimit` value configured on the [registry](/chainlink-automation/overview/supported-networks).\\\\n\\\\n* **Starting balance (LINK)**: Specify a LINK starting balance to fund your upkeep. See the [LINK Token Contracts](/resources/link-token-contracts) page to find the correct contract address and access faucets for testnet LINK. This field is required. You must have LINK before you can use the Chainlink Automation service.\\\\n\\\\n \\\\n\\\\n > **TIP: Funding Upkeep**\\\\n >\\\\n > You should fund your contract with more LINK that you anticipate you will need. The network will not check or\\\\n > perform your Upkeep if your balance is too low based on current exchange rates. View the [Automation\\\\n > economics](/chainlink-automation/overview/automation-economics) page to learn more about the cost of using\\\\n > Chainlink Automation.\\\\n\\\\n \\\\n\\\\n > **TIP: ERC-677 Link**\\\\n >\\\\n > For funding on Mainnet, you need ERC-677 LINK. Many token bridges give you ERC-20 LINK tokens. Use PegSwap to\\\\n > [convert Chainlink tokens (LINK) to be ERC-677 compatible](https://pegswap.chain.link/). Use [faucets.chain.link](https://faucets.chain.link/) to get testnet LINK.\\\\n\\\\n* **Check data**: Optional input field that you may use depending on whether you are using it in your contract.\\\\n\\\\n* **Your email address (optional)**: This email address will be used to send you an email notification when your upkeep is underfunded.## Complete upkeep registrationClick **Register upkeep** and confirm the transaction in MetaMask.\\\\n![Upkeep Registration Success Message](/images/automation/automation-registration-submitted.png)Your upkeeps will be displayed in your list of **Active Upkeeps**. You must monitor the balance of your upkeep. If the balance drops below the **minimum balance**, the Chainlink Automation Network will not perform the Upkeep. See [Managing Upkeeps](/chainlink-automation/guides/manage-upkeeps) to learn how to manage your upkeeps.![Image](/images/automation/log-trig-config.png)## Performing upkeepNavigate back to the Etherscan page for `CountEmitLog.sol`. Under *Write Contract*, click the button to **emitCountLog**. Refresh the upkeep details page. You may have to wait a few moments. Under *History*, you should see the upkeep has been performed.\\\"};duplicate=1\",\"component\":\"Markdown parse error\",\"reason\":\"Unexpected end of file in expression, expected a corresponding closing brace for `{`\",\"servedText\":\"\\nCreate powerful smart contracts that use log data as both trigger and input. This guide explains how to create log-trigger upkeeps.> **TIP: Testing and best practices**\\n>\\n> Follow the [best practices](/chainlink-automation/concepts/best-practice) when creating a compatible contract and test\\n> your upkeep on a testnet before deploying it to a mainnet.## Understanding maximum logs processedChainlink Automation processes a limited number of logs per block per upkeep. See the [Service Limits](/chainlink-automation/overview/service-limits) page to learn about how logs are processed and how many logs you can expect to be processed per block on the chain you're using.## Emit a log1) Open `CountEmitLog.sol` in Remix. This contract contains an event `WantsToCount` that keeps track of the address of the message sender. The function `emitCountLog` emits this event. ```sol\\n// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.20;\\n\\ncontract CountEmitLog {\\n event WantsToCount(address indexed msgSender);\\n\\n constructor() {}\\n\\n function emitCountLog() public {\\n emit WantsToCount(msg.sender);\\n }\\n}\\n```1) Under *Environment*, select the option **Injected Provider** to connect to your cryptocurrency wallet.\\n2) Deploy the contract and confirm the transaction.\\n3) You can view the contract on Etherscan by clicking the message in the terminal. You an view the address of the created contract and the original contract in Etherscan.\\n\\n ![Image](/images/automation/log-trig-addresses.png)\\n4) Navigate to the *Contract* tab. If the contract is already verified, you will see options to **Read Contract** and **Write Contract**. If your contract isn't verified, follow the prompts in Etherscan to verify the contract.\\n5) Click **Write Contract** and click the **emitCountLog** button to emit a log.\\n6) Navigate back to Etherscan and locate the *Events* tab. You should see the event of emitting a log recorded in this section.\\n\\n ![Image](/images/automation/log-trig-event.png)## Using `ILogAutomation` Interface1) Open `CountWithLog.sol` in Remix. This contract contains a struct to account for the log structure and uses the [ILogAutomation interface](/chainlink-automation/reference/automation-interfaces#ilogautomation) for log automation. The interface contains the `checkLog` and `performUpkeep` functions. The contract contains an event `CountedBy`. The `counted` variable will be incremented when `performUpkeep` is called. ```sol\\n// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.20;\\n\\nstruct Log {\\n uint256 index; // Index of the log in the block\\n uint256 timestamp; // Timestamp of the block containing the log\\n bytes32 txHash; // Hash of the transaction containing the log\\n uint256 blockNumber; // Number of the block containing the log\\n bytes32 blockHash; // Hash of the block containing the log\\n address source; // Address of the contract that emitted the log\\n bytes32[] topics; // Indexed topics of the log\\n bytes data; // Data of the log\\n}\\n\\ninterface ILogAutomation {\\n function checkLog(\\n Log calldata log,\\n bytes memory checkData\\n ) external returns (bool upkeepNeeded, bytes memory performData);\\n\\n function performUpkeep(\\n bytes calldata performData\\n ) external;\\n}\\n\\ncontract CountWithLog is ILogAutomation {\\n event CountedBy(address indexed msgSender);\\n\\n uint256 public counted = 0;\\n\\n constructor() {}\\n\\n function checkLog(\\n Log calldata log,\\n bytes memory\\n ) external pure returns (bool upkeepNeeded, bytes memory performData) {\\n upkeepNeeded = true;\\n address logSender = bytes32ToAddress(log.topics[1]);\\n performData = abi.encode(logSender);\\n }\\n\\n function performUpkeep(\\n bytes calldata performData\\n ) external override {\\n counted += 1;\\n address logSender = abi.decode(performData, (address));\\n emit CountedBy(logSender);\\n }\\n\\n function bytes32ToAddress(\\n bytes32 _address\\n ) public pure returns (address) {\\n return address(uint160(uint256(_address)));\\n }\\n}\\n```1) Deploy the contract and confirm your transaction.\\n2) Under *Deployed Contracts*, expand `CountWithLog`. Click the **count** button to view the value of the count variable. It should be 0.\\n\\n ![Image](/images/automation/log-trig-count-0.png)\\n3) Copy the address of this contract either via Remix or Etherscan to register it on the Chainlink Automation app.## Using the Chainlink Automation App**Click the Register New Upkeep button.**![Image](/images/automation/auto-ui-home.png)### Connecting your walletIf you do not already have a wallet connected with the Chainlink Automation network, the interface will prompt you to do so. Click the **Connect Wallet** button and follow the remaining prompts to connect your wallet to one of the [Automation supported blockchain networks](/chainlink-automation/overview/supported-networks).![Image](/images/automation/auto-ui-wallet.png)## Trigger selectionSelect **Log Trigger**.![Image](/images/automation/ui_select_trigger.png)## Using log triggers> **TIP: Reorg protection**\\n>\\n> Your upkeeps will be protected against logs that are emitted during a reorg.1. **Provide the address of your [Automation-compatible contract](/chainlink-automation/guides/compatible-contracts)** that you want to automate. In this case, we will paste the address of `CountWithLog.sol`. This contract must follow the format of the [ILogAutomation interface](https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol) to ensure Automation nodes can interact with your contract as expected.\\n\\n ![Image](/images/automation/log_trig_1_upkeep_address.png)\\n\\n2. **Provide the address of the contract that will be emitting the log.** In this case, this is the address of `CountEmitLog.sol`. If the contract is not validated you will need to provide the ABI.\\n\\n ![Image](/images/automation/log_trig_2_emitter_address.png)\\n\\n To find the ABI of your contract in Remix, navigate to the Compiler view using the left side icons. Then, copy the ABI to your clipboard using the button at the bottom of the panel.\\n\\n ![Image](/images/automation/log-trig-ebi.png)\\n\\n3. **Use the dropdown to select the triggering event.** This is **WantsToCount**. You can also provide one optional filter per any of the indexed events in the log, but you don't have to. When this combination of filters are matched the upkeep will trigger.\\n\\n ![Image](/images/automation/log_trig_3_logsig_filter_populated.png)## Entering upkeep detailsProvide the following information in the Automation app:* **Upkeep name**: This will be visible in the Chainlink Automation app.\\n\\n* **Gas limit**: This is the maximum amount of gas that your transaction requires to execute on chain. This limit cannot exceed the `performGasLimit` value configured on the [registry](/chainlink-automation/overview/supported-networks).\\n\\n* **Starting balance (LINK)**: Specify a LINK starting balance to fund your upkeep. See the [LINK Token Contracts](/resources/link-token-contracts) page to find the correct contract address and access faucets for testnet LINK. This field is required. You must have LINK before you can use the Chainlink Automation service.\\n\\n \\n\\n > **TIP: Funding Upkeep**\\n >\\n > You should fund your contract with more LINK that you anticipate you will need. The network will not check or\\n > perform your Upkeep if your balance is too low based on current exchange rates. View the [Automation\\n > economics](/chainlink-automation/overview/automation-economics) page to learn more about the cost of using\\n > Chainlink Automation.\\n\\n \\n\\n > **TIP: ERC-677 Link**\\n >\\n > For funding on Mainnet, you need ERC-677 LINK. Many token bridges give you ERC-20 LINK tokens. Use PegSwap to\\n > [convert Chainlink tokens (LINK) to be ERC-677 compatible](https://pegswap.chain.link/). Use [faucets.chain.link](https://faucets.chain.link/) to get testnet LINK.\\n\\n* **Check data**: Optional input field that you may use depending on whether you are using it in your contract.\\n\\n* **Your email address (optional)**: This email address will be used to send you an email notification when your upkeep is underfunded.## Complete upkeep registrationClick **Register upkeep** and confirm the transaction in MetaMask.\\n![Upkeep Registration Success Message](/images/automation/automation-registration-submitted.png)Your upkeeps will be displayed in your list of **Active Upkeeps**. You must monitor the balance of your upkeep. If the balance drops below the **minimum balance**, the Chainlink Automation Network will not perform the Upkeep. See [Managing Upkeeps](/chainlink-automation/guides/manage-upkeeps) to learn how to manage your upkeeps.![Image](/images/automation/log-trig-config.png)## Performing upkeepNavigate back to the Etherscan page for `CountEmitLog.sol`. Under *Write Contract*, click the button to **emitCountLog**. Refresh the upkeep details page. You may have to wait a few moments. Under *History*, you should see the upkeep has been performed.\"}", + "{\"path\":\"chainlink-automation/guides/manage-upkeeps\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/guides/migrate-to-v2\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=1\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/migrate-to-v2\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=2\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/migrate-to-v2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/migrate-to-v2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Complete upkeep registration\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Complete upkeep registration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Connecting your wallet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Connecting your wallet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Entering upkeep details\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Entering upkeep details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Trigger selection\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Trigger selection\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Using custom logic triggers\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Using custom logic triggers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Using the Chainlink Automation App\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Using the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can register it using the Chainlink Automation App or from within a contract that you deploy.\\\"};duplicate=1\",\"expected\":\". You can register it using the Chainlink Automation App or from within a contract that you deploy.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Register upkeep and confirm the transaction in MetaMask.\\\"};duplicate=1\",\"expected\":\"Click Register upkeep and confirm the transaction in MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Register New Upkeep button\\\"};duplicate=1\",\"expected\":\"Click the Register New Upkeep button\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you do not already have a wallet connected with the Chainlink Automation network, the interface will prompt you to do so. Click the Connect Wallet button and follow the remaining prompts to connect your wallet to one of the\\\"};duplicate=1\",\"expected\":\"If you do not already have a wallet connected with the Chainlink Automation network, the interface will prompt you to do so. Click the Connect Wallet button and follow the remaining prompts to connect your wallet to one of the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=1\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provide the address of your\\\"};duplicate=1\",\"expected\":\"Provide the address of your\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provide the following information in the Automation app:\\\"};duplicate=1\",\"expected\":\"Provide the following information in the Automation app:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select Custom Logic trigger.\\\"};duplicate=1\",\"expected\":\"Select Custom Logic trigger.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP: Testing and best practices\\\"};duplicate=1\",\"expected\":\"TIP: Testing and best practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Upkeep name: This will be publicly visible in the Chainlink Automation app.\\\"};duplicate=1\",\"expected\":\"Upkeep name: This will be publicly visible in the Chainlink Automation app.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your email address (optional): This email address will be used to send you an email notification when your upkeep is underfunded.\\\"};duplicate=1\",\"expected\":\"Your email address (optional): This email address will be used to send you an email notification when your upkeep is underfunded.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"when creating a compatible contract and test your upkeep on a testnet before deploying it to a mainnet.\\\"};duplicate=1\",\"expected\":\"when creating a compatible contract and test your upkeep on a testnet before deploying it to a mainnet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the AutomationCompatibleInterface contract.\\\"};duplicate=1\",\"expected\":\"with the AutomationCompatibleInterface contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep-in-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CodeSample\\\",\\\"reason\\\":\\\"CodeSample path \\\\\\\"/samples/Automation/UpkeepIDConditionalExample.sol\\\\\\\" is missing or escapes the project\\\"};duplicate=1\",\"component\":\"CodeSample\",\"reason\":\"CodeSample path \\\"/samples/Automation/UpkeepIDConditionalExample.sol\\\" is missing or escapes the project\"}", + "{\"path\":\"chainlink-automation/guides/register-upkeep-in-contract\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CodeSample\\\",\\\"reason\\\":\\\"CodeSample path \\\\\\\"/samples/Automation/UpkeepIDlogTriggerExample.sol\\\\\\\" is missing or escapes the project\\\"};duplicate=1\",\"component\":\"CodeSample\",\"reason\":\"CodeSample path \\\"/samples/Automation/UpkeepIDlogTriggerExample.sol\\\" is missing or escapes the project\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See the\\\"};duplicate=1\",\"expected\":\". See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can find the verifier proxy addresses on the\\\"};duplicate=1\",\"expected\":\". You can find the verifier proxy addresses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782\\\"};duplicate=1\",\"expected\":\"0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\\\"};duplicate=1\",\"expected\":\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia testnet and LINK token contract\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia testnet and LINK token contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy an upkeep contract that is enabled to retrieve data from Data Streams. For this example, you will read from the ETH/USD stream on Arbitrum Sepolia. This stream ID is\\\"};duplicate=1\",\"expected\":\"Deploy an upkeep contract that is enabled to retrieve data from Data Streams. For this example, you will read from the ETH/USD stream on Arbitrum Sepolia. This stream ID is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the Contract section, select the StreamsUpkeep contract and fill in the Arbitrum Sepolia verifier proxy address:\\\"};duplicate=1\",\"expected\":\"In the Contract section, select the StreamsUpkeep contract and fill in the Arbitrum Sepolia verifier proxy address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"808206\\\"};duplicate=1\",\"expected\":\"808206\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"8085XX (e.g 808500)\\\"};duplicate=1\",\"expected\":\"8085XX (e.g 808500)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsBadRequest: 808400\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsBadRequest: 808400\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsBadResponse: 808600\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsBadResponse: 808600\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsTimeout: 808601\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsTimeout: 808601\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsUnauthorized: 808401\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsUnauthorized: 808401\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsUnknownError: 808700\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsUnknownError: 808700\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Error code\\\"};duplicate=1\",\"expected\":\"Error code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Error in reading body of returned response, but service is up\\\"};duplicate=1\",\"expected\":\"Error in reading body of returned response, but service is up\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Issue with encoding http url (bad characters)\\\"};duplicate=1\",\"expected\":\"Issue with encoding http url (bad characters)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key access issue or incorrect feedID\\\"};duplicate=1\",\"expected\":\"Key access issue or incorrect feedID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log trigger - after retries; Conditional immediately\\\"};duplicate=1\",\"expected\":\"Log trigger - after retries; Conditional immediately\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log trigger - after retries; Conditional immediately\\\"};duplicate=2\",\"expected\":\"Log trigger - after retries; Conditional immediately\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"N/A\\\"};duplicate=1\",\"expected\":\"N/A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No error\\\"};duplicate=1\",\"expected\":\"No error\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No error\\\"};duplicate=2\",\"expected\":\"No error\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No response\\\"};duplicate=1\",\"expected\":\"No response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No valid report is received for 10 seconds\\\"};duplicate=1\",\"expected\":\"No valid report is received for 10 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=3\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=4\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=5\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Possible cause of error\\\"};duplicate=1\",\"expected\":\"Possible cause of error\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested m reports but only received n (partial)\\\"};duplicate=1\",\"expected\":\"Requested m reports but only received n (partial)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retries\\\"};duplicate=1\",\"expected\":\"Retries\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unknown\\\"};duplicate=1\",\"expected\":\"Unknown\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User error, incorrect parameter input\\\"};duplicate=1\",\"expected\":\"User error, incorrect parameter input\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User requested 0 feeds\\\"};duplicate=1\",\"expected\":\"User requested 0 feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=1\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=1\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=1\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=10\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=11\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=12\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=13\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=14\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=15\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=16\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=17\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=18\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=19\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=2\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=20\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=21\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=22\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=23\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=24\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=25\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=26\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=3\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=4\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=5\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=6\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=7\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=8\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=9\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=1\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=2\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=3\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=1\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=1\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=10\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=11\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=2\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=3\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=4\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=5\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=6\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=7\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=8\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/guides/streams-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=9\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK/Native\\\"};duplicate=1\",\"expected\":\"LINK/Native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Native WEI\\\"};duplicate=1\",\"expected\":\"Native WEI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate in WEI\\\"};duplicate=1\",\"expected\":\"Rate in WEI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate in WEI\\\"};duplicate=2\",\"expected\":\"Rate in WEI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The minimum balance is calculated using the current fast gas price, the gas limit you entered for your upkeep, the max gas multiplier, and the LINK/Native\\\"};duplicate=1\",\"expected\":\"The minimum balance is calculated using the current fast gas price, the gas limit you entered for your upkeep, the max gas multiplier, and the LINK/Native\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for conversion to LINK. To find the latest value for the gasCeilingMultiplier, see the\\\"};duplicate=1\",\"expected\":\"for conversion to LINK. To find the latest value for the gasCeilingMultiplier, see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tx.gasPrice\\\"};duplicate=1\",\"expected\":\"tx.gasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"sub\\\",\\\"reason\\\":\\\"Raw HTML element sub is not statically projected\\\"};duplicate=1\",\"component\":\"sub\",\"reason\":\"Raw HTML element sub is not statically projected\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"sub\\\",\\\"reason\\\":\\\"Raw HTML element sub is not statically projected\\\"};duplicate=2\",\"component\":\"sub\",\"reason\":\"Raw HTML element sub is not statically projected\"}", + "{\"path\":\"chainlink-automation/overview/automation-economics\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"sub\\\",\\\"reason\\\":\\\"Raw HTML element sub is not statically projected\\\"};duplicate=3\",\"component\":\"sub\",\"reason\":\"Raw HTML element sub is not statically projected\"}", + "{\"path\":\"chainlink-automation/overview/getting-started\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/overview/getting-started\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=2\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/overview/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-automation/overview/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/overview/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"NetworkIcons\\\",\\\"reason\\\":\\\"Unsupported MDX component NetworkIcons\\\"};duplicate=1\",\"component\":\"NetworkIcons\",\"reason\":\"Unsupported MDX component NetworkIcons\"}", + "{\"path\":\"chainlink-automation/reference/automation-interfaces\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=1\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-automation/reference/automation-interfaces\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkAutomation\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkAutomation\\\"};duplicate=2\",\"component\":\"ChainlinkAutomation\",\"reason\":\"Unsupported MDX component ChainlinkAutomation\"}", + "{\"path\":\"chainlink-functions\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=2\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npm install @chainlink/contracts --save\\\"};duplicate=1\",\"expected\":\"npm install @chainlink/contracts --save\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-client\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"yarn add @chainlink/contracts\\\"};duplicate=1\",\"expected\":\"yarn add @chainlink/contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-client\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-request\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-request\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=2\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-request\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npm install @chainlink/contracts --save\\\"};duplicate=1\",\"expected\":\"npm install @chainlink/contracts --save\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-request\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"yarn add @chainlink/contracts\\\"};duplicate=1\",\"expected\":\"yarn add @chainlink/contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/api-reference/functions-request\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/api-reference/javascript-source\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You are going to fetch the name of the first Star Wars character.\\\"};duplicate=1\",\"expected\":\". You are going to fetch the name of the first Star Wars character.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sepolia testnet and LINK token contract\\\"};duplicate=1\",\"expected\":\"Sepolia testnet and LINK token contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under Argument, set the first argument to\\\"};duplicate=1\",\"expected\":\"Under Argument, set the first argument to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"chainlink-functions/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-functions/guides/cancel-subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/guides/cancel-subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"SubscriptionLookup\\\",\\\"reason\\\":\\\"Unsupported MDX component SubscriptionLookup\\\"};duplicate=1\",\"component\":\"SubscriptionLookup\",\"reason\":\"Unsupported MDX component SubscriptionLookup\"}", + "{\"path\":\"chainlink-functions/resources\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/resources/architecture\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/resources/billing\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/resources/secrets\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Request fulfillment timeout)\\\"};duplicate=1\",\"expected\":\"(Request fulfillment timeout)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contact us\\\"};duplicate=1\",\"expected\":\"Contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mainnets: 3 months (2160 hours)\\\"};duplicate=1\",\"expected\":\"Mainnets: 3 months (2160 hours)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Maximum duration of a request\\\"};duplicate=1\",\"expected\":\"Maximum duration of a request\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Testnets: 3 days (72 hours)\\\"};duplicate=1\",\"expected\":\"Testnets: 3 days (72 hours)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/resources/service-limits\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/resources/simulation\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Add a consumer contract to a subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Add a consumer contract to a subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Cancel a subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Cancel a subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Create a subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Create a subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Fund a subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Fund a subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Remove a consumer contract from a subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Remove a consumer contract from a subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Subscriptions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Subscriptions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Time out pending requests manually\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Time out pending requests manually\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". The Functions Subscription Manager lets you create a subscription, add consumers to it, remove consumers from it, fund it with LINK, and delete it.\\\"};duplicate=1\",\"expected\":\". The Functions Subscription Manager lets you create a subscription, add consumers to it, remove consumers from it, fund it with LINK, and delete it.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the subscription is created, fund it with LINK:\\\"};duplicate=1\",\"expected\":\"After the subscription is created, fund it with LINK:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: You cannot cancel a subscription if there are in-flight requests. In-flight requests are requests that still need to be fulfilled.\\\"};duplicate=1\",\"expected\":\"Note: You cannot cancel a subscription if there are in-flight requests. In-flight requests are requests that still need to be fulfilled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your subscription details and click Actions then click Fund subscription:\\\"};duplicate=1\",\"expected\":\"Open your subscription details and click Actions then click Fund subscription:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your subscription details and click Add Consumer:\\\"};duplicate=1\",\"expected\":\"Open your subscription details and click Add Consumer:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your subscription details and click the consumer you want to remove, then Remove Consumer:\\\"};duplicate=1\",\"expected\":\"Open your subscription details and click the consumer you want to remove, then Remove Consumer:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your subscription details and scroll to the Pending section. If a request has been pending longer than five minutes, its status displays as Time out required. Click the link within the red banner that says Time out request:\\\"};duplicate=1\",\"expected\":\"Open your subscription details and scroll to the Pending section. If a request has been pending longer than five minutes, its status displays as Time out required. Click the link within the red banner that says Time out request:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your subscription details, click Actions, then Cancel subscription:\\\"};duplicate=1\",\"expected\":\"Open your subscription details, click Actions, then Cancel subscription:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open\\\"};duplicate=1\",\"expected\":\"Open\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Chainlink Functions Subscription Manager is available\\\"};duplicate=1\",\"expected\":\"The Chainlink Functions Subscription Manager is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Subscription Manager provides the option to time out requests manually. You can time out requests that have been pending for longer than five minutes to unlock your subscription funds.\\\"};duplicate=1\",\"expected\":\"The Subscription Manager provides the option to time out requests manually. You can time out requests that have been pending for longer than five minutes to unlock your subscription funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When you connect to the Subscription Manager, choose the correct network, then click connect wallet.\\\"};duplicate=1\",\"expected\":\"When you connect to the Subscription Manager, choose the correct network, then click connect wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You use a Chainlink Functions subscription to pay for, manage, and track Functions requests.\\\"};duplicate=1\",\"expected\":\"You use a Chainlink Functions subscription to pay for, manage, and track Functions requests.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"can result in suspension or termination of your Chainlink Functions account or subscription.\\\"};duplicate=1\",\"expected\":\"can result in suspension or termination of your Chainlink Functions account or subscription.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/resources/subscriptions\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/service-responsibility\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=1\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=10\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=11\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=12\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=13\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=14\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=15\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=16\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=17\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=18\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=2\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=3\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=4\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=5\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=6\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=7\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=8\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/\\\"};duplicate=9\",\"expected\":\"/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d617262697472756d2d6d61696e6e65742d3100000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d617262697472756d2d6d61696e6e65742d3100000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d617262697472756d2d7365706f6c69612d3100000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d617262697472756d2d7365706f6c69612d3100000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d6176616c616e6368652d66756a692d31000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d6176616c616e6368652d66756a692d31000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d6176616c616e6368652d6d61696e6e65742d31000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d6176616c616e6368652d6d61696e6e65742d31000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d626173652d6d61696e6e65742d310000000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d626173652d6d61696e6e65742d310000000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d626173652d7365706f6c69612d310000000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d626173652d7365706f6c69612d310000000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d63656c6f2d616c66616a6f7265732d31000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d63656c6f2d616c66616a6f7265732d31000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d63656c6f2d6d61696e6e65742d310000000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d63656c6f2d6d61696e6e65742d310000000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d657468657265756d2d6d61696e6e65742d3100000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d657468657265756d2d6d61696e6e65742d3100000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d657468657265756d2d7365706f6c69612d3100000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d657468657265756d2d7365706f6c69612d3100000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d6f7074696d69736d2d6d61696e6e65742d310a000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d6f7074696d69736d2d6d61696e6e65742d310a000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d6f7074696d69736d2d7365706f6c69612d3100000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d6f7074696d69736d2d7365706f6c69612d3100000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d706f6c79676f6e2d616d6f792d310000000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d706f6c79676f6e2d616d6f792d310000000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d706f6c79676f6e2d6d61696e6e65742d310000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d706f6c79676f6e2d6d61696e6e65742d310000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d736f6e6569756d2d6d61696e6e65742d310000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d736f6e6569756d2d6d61696e6e65742d310000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d736f6e6569756d2d7365706f6c69612d310000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d736f6e6569756d2d7365706f6c69612d310000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d7a6b73796e632d6d61696e6e65742d31000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d7a6b73796e632d6d61696e6e65742d31000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x66756e2d7a6b73796e632d7365706f6c69612d31000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x66756e2d7a6b73796e632d7365706f6c69612d31000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-arbitrum-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-arbitrum-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-arbitrum-sepolia-1\\\"};duplicate=1\",\"expected\":\"fun-arbitrum-sepolia-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-avalanche-fuji-1\\\"};duplicate=1\",\"expected\":\"fun-avalanche-fuji-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-avalanche-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-avalanche-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-base-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-base-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-base-sepolia-1\\\"};duplicate=1\",\"expected\":\"fun-base-sepolia-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-celo-alfajores-1\\\"};duplicate=1\",\"expected\":\"fun-celo-alfajores-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-celo-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-celo-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-ethereum-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-ethereum-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-ethereum-sepolia-1\\\"};duplicate=1\",\"expected\":\"fun-ethereum-sepolia-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-optimism-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-optimism-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-optimism-sepolia-1\\\"};duplicate=1\",\"expected\":\"fun-optimism-sepolia-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-polygon-amoy-1\\\"};duplicate=1\",\"expected\":\"fun-polygon-amoy-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-polygon-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-polygon-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-soneium-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-soneium-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-soneium-sepolia-1\\\"};duplicate=1\",\"expected\":\"fun-soneium-sepolia-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-zksync-mainnet-1\\\"};duplicate=1\",\"expected\":\"fun-zksync-mainnet-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"fun-zksync-sepolia-1\\\"};duplicate=1\",\"expected\":\"fun-zksync-sepolia-1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=1\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=2\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=3\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=4\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=5\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=6\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=7\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=8\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.chain.link/\\\"};duplicate=9\",\"expected\":\"https://01.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=1\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=2\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=3\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=4\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=5\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=6\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=7\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=8\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://01.functions-gateway.testnet.chain.link/\\\"};duplicate=9\",\"expected\":\"https://01.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=1\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=2\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=3\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=4\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=5\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=6\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=7\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=8\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.chain.link/\\\"};duplicate=9\",\"expected\":\"https://02.functions-gateway.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=1\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=2\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=3\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=4\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=5\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=6\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=7\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=8\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://02.functions-gateway.testnet.chain.link/\\\"};duplicate=9\",\"expected\":\"https://02.functions-gateway.testnet.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=1\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=10\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=11\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=12\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=13\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=14\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=15\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=16\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=17\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=18\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=2\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=3\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=4\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=5\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=6\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=7\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=8\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DonId\\\",\\\"reason\\\":\\\"Unsupported MDX component DonId\\\"};duplicate=9\",\"component\":\"DonId\",\"reason\":\"Unsupported MDX component DonId\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"NetworkIcons\\\",\\\"reason\\\":\\\"Unsupported MDX component NetworkIcons\\\"};duplicate=1\",\"component\":\"NetworkIcons\",\"reason\":\"Unsupported MDX component NetworkIcons\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=11\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=12\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=13\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=14\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=15\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=16\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=17\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=18\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=19\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=20\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=21\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=22\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=23\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=24\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=25\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=26\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=27\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=28\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=29\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=30\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=31\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=32\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=33\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=34\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=35\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=36\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=1\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=2\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=3\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=4\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=5\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=6\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=7\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=8\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=10\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=11\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=12\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=13\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=14\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=15\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=16\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=17\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=18\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=5\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=6\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=7\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=8\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=9\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"chainlink-functions/tutorials\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"$ node examples/12-abi-encoding/request.js secp256k1 unavailable, reverting to browser version Start simulation... Simulation result { capturedTerminalOutput: 'Fetched BTC / USD price: dataFeedResponse.answer\\\\\\\\n' + 'Updated at: 1712941559\\\\\\\\n' + 'Decimals: 8\\\\\\\\n' + 'Description: BTC / USD\\\\\\\\n', responseBytesHexstring: '0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000' } ✅ Decoded response to bytes: 0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000 Estimate request costs... Fulfillment cost estimated to 1.007671833192655 LINK Make request... ✅ Functions request sent! Transaction hash 0x5618089ec9b5e662ec72c81241d78cb6daa135ecc3fa3a33032d910e3b47c2b1. Waiting for a response... See your request in the explorer https://sepolia.etherscan.io/tx/0x5618089ec9b5e662ec72c81241d78cb6daa135ecc3fa3a33032d910e3b47c2b1 ✅ Request 0xdf22fa28c81a3ea78f356334b6d28d969e953009fae8ece4fe544f2eb466419b successfully fulfilled. Cost is 0.282344694329387405 LINK.Complete response: { requestId: '0xdf22fa28c81a3ea78f356334b6d28d969e953009fae8ece4fe544f2eb466419b', subscriptionId: 2303, totalCostInJuels: 282344694329387405n, responseBytesHexstring: '0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000', errorString: '', returnDataBytesHexstring: '0x', fulfillmentCode: 0 } ✅ Raw response: 0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000 ✅ Fetched BTC / USD price: 6855664389252 (updatedAt: 1712941559) (decimals: 8) (description: BTC / USD)\\\"};duplicate=1\",\"expected\":\"$ node examples/12-abi-encoding/request.js secp256k1 unavailable, reverting to browser version Start simulation... Simulation result { capturedTerminalOutput: 'Fetched BTC / USD price: dataFeedResponse.answer\\\\n' + 'Updated at: 1712941559\\\\n' + 'Decimals: 8\\\\n' + 'Description: BTC / USD\\\\n', responseBytesHexstring: '0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000' } ✅ Decoded response to bytes: 0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000 Estimate request costs... Fulfillment cost estimated to 1.007671833192655 LINK Make request... ✅ Functions request sent! Transaction hash 0x5618089ec9b5e662ec72c81241d78cb6daa135ecc3fa3a33032d910e3b47c2b1. Waiting for a response... See your request in the explorer https://sepolia.etherscan.io/tx/0x5618089ec9b5e662ec72c81241d78cb6daa135ecc3fa3a33032d910e3b47c2b1 ✅ Request 0xdf22fa28c81a3ea78f356334b6d28d969e953009fae8ece4fe544f2eb466419b successfully fulfilled. Cost is 0.282344694329387405 LINK.Complete response: { requestId: '0xdf22fa28c81a3ea78f356334b6d28d969e953009fae8ece4fe544f2eb466419b', subscriptionId: 2303, totalCostInJuels: 282344694329387405n, responseBytesHexstring: '0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000', errorString: '', returnDataBytesHexstring: '0x', fulfillmentCode: 0 } ✅ Raw response: 0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000 ✅ Fetched BTC / USD price: 6855664389252 (updatedAt: 1712941559) (decimals: 8) (description: BTC / USD)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"( uint256 answer, uint256 updatedAt, uint8 decimals, string memory description ) = abi.decode(response, (uint256, uint256, uint8, string));\\\"};duplicate=1\",\"expected\":\"( uint256 answer, uint256 updatedAt, uint8 decimals, string memory description ) = abi.decode(response, (uint256, uint256, uint8, string));\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {FunctionsClient} from \\\\\\\"@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.sol\\\\\\\"; import {FunctionsRequest} from \\\\\\\"@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.sol\\\\\\\"; import {ConfirmedOwner} from \\\\\\\"@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.sol\\\\\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY. * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE. * DO NOT USE THIS CODE IN PRODUCTION. */ contract FunctionsConsumerDecoder is FunctionsClient, ConfirmedOwner { using FunctionsRequest for FunctionsRequest.Request; bytes32 public s_lastRequestId; bytes public s_lastResponse; bytes public s_lastError; uint256 public s_answer; uint256 public s_updatedAt; uint8 public s_decimals; string public s_description; error UnexpectedRequestID(bytes32 requestId); event Response(bytes32 indexed requestId, bytes response, bytes err); event DecodedResponse( bytes32 indexed requestId, uint256 answer, uint256 updatedAt, uint8 decimals, string description ); constructor( address router ) FunctionsClient(router) ConfirmedOwner(msg.sender) {} /** * @notice Send a simple request * @param source JavaScript source code * @param encryptedSecretsUrls Encrypted URLs where to fetch user secrets * @param donHostedSecretsSlotID Don hosted secrets slotId * @param donHostedSecretsVersion Don hosted secrets version * @param args List of arguments accessible from within the source code * @param bytesArgs Array of bytes arguments, represented as hex strings * @param subscriptionId Billing ID */ function sendRequest( string memory source, bytes memory encryptedSecretsUrls, uint8 donHostedSecretsSlotID, uint64 donHostedSecretsVersion, string[] memory args, bytes[] memory bytesArgs, uint64 subscriptionId, uint32 gasLimit, bytes32 donID ) external onlyOwner returns (bytes32 requestId) { FunctionsRequest.Request memory req; req.initializeRequestForInlineJavaScript(source); if (encryptedSecretsUrls.length > 0) { req.addSecretsReference(encryptedSecretsUrls); } else if (donHostedSecretsVersion > 0) { req.addDONHostedSecrets(donHostedSecretsSlotID, donHostedSecretsVersion); } if (args.length > 0) req.setArgs(args); if (bytesArgs.length > 0) req.setBytesArgs(bytesArgs); s_lastRequestId = _sendRequest(req.encodeCBOR(), subscriptionId, gasLimit, donID); return s_lastRequestId; } /** * @notice Send a pre-encoded CBOR request * @param request CBOR-encoded request data * @param subscriptionId Billing ID * @param gasLimit The maximum amount of gas the request can consume * @param donID ID of the job to be invoked * @return requestId The ID of the sent request */ function sendRequestCBOR( bytes memory request, uint64 subscriptionId, uint32 gasLimit, bytes32 donID ) external onlyOwner returns (bytes32 requestId) { s_lastRequestId = _sendRequest(request, subscriptionId, gasLimit, donID); return s_lastRequestId; } /** * @dev Internal function to process the outcome of a data request. It stores the latest response or error and updates * the contract state accordingly. This function is designed to handle only one of `response` or `err` at a time, not * both. It decodes the response if present and emits events to log both raw and decoded data. * * @param requestId The unique identifier of the request, originally returned by `sendRequest`. Used to match * responses with requests. * @param response The raw aggregated response data from the external source. This data is ABI-encoded and is expected * to contain specific information (e.g., answer, updatedAt) if no error occurred. The function attempts to decode * this data if `response` is not empty. * @param err The raw aggregated error information, indicating an issue either from the user's code or within the * execution of the user Chainlink Function. * * Emits a `DecodedResponse` event if the `response` is successfully decoded, providing detailed information about the * data received. * Emits a `Response` event for every call to log the raw response and error data. * * Requirements: * - The `requestId` must match the last stored request ID to ensure the response corresponds to the latest request * sent. * - Only one of `response` or `err` should contain data for a given call; the other should be empty. */ function fulfillRequest( bytes32 requestId, bytes memory response, bytes memory err ) internal override { if (s_lastRequestId != requestId) { revert UnexpectedRequestID(requestId); } s_lastError = err; s_lastResponse = response; if (response.length > 0) { (uint256 answer, uint256 updatedAt, uint8 decimals, string memory description) = abi.decode(response, (uint256, uint256, uint8, string)); s_answer = answer; s_updatedAt = updatedAt; s_decimals = decimals; s_description = description; emit DecodedResponse(requestId, answer, updatedAt, decimals, description); } emit Response(requestId, response, err); } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {FunctionsClient} from \\\"@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.sol\\\"; import {FunctionsRequest} from \\\"@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.sol\\\"; import {ConfirmedOwner} from \\\"@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.sol\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY. * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE. * DO NOT USE THIS CODE IN PRODUCTION. */ contract FunctionsConsumerDecoder is FunctionsClient, ConfirmedOwner { using FunctionsRequest for FunctionsRequest.Request; bytes32 public s_lastRequestId; bytes public s_lastResponse; bytes public s_lastError; uint256 public s_answer; uint256 public s_updatedAt; uint8 public s_decimals; string public s_description; error UnexpectedRequestID(bytes32 requestId); event Response(bytes32 indexed requestId, bytes response, bytes err); event DecodedResponse( bytes32 indexed requestId, uint256 answer, uint256 updatedAt, uint8 decimals, string description ); constructor( address router ) FunctionsClient(router) ConfirmedOwner(msg.sender) {} /** * @notice Send a simple request * @param source JavaScript source code * @param encryptedSecretsUrls Encrypted URLs where to fetch user secrets * @param donHostedSecretsSlotID Don hosted secrets slotId * @param donHostedSecretsVersion Don hosted secrets version * @param args List of arguments accessible from within the source code * @param bytesArgs Array of bytes arguments, represented as hex strings * @param subscriptionId Billing ID */ function sendRequest( string memory source, bytes memory encryptedSecretsUrls, uint8 donHostedSecretsSlotID, uint64 donHostedSecretsVersion, string[] memory args, bytes[] memory bytesArgs, uint64 subscriptionId, uint32 gasLimit, bytes32 donID ) external onlyOwner returns (bytes32 requestId) { FunctionsRequest.Request memory req; req.initializeRequestForInlineJavaScript(source); if (encryptedSecretsUrls.length > 0) { req.addSecretsReference(encryptedSecretsUrls); } else if (donHostedSecretsVersion > 0) { req.addDONHostedSecrets(donHostedSecretsSlotID, donHostedSecretsVersion); } if (args.length > 0) req.setArgs(args); if (bytesArgs.length > 0) req.setBytesArgs(bytesArgs); s_lastRequestId = _sendRequest(req.encodeCBOR(), subscriptionId, gasLimit, donID); return s_lastRequestId; } /** * @notice Send a pre-encoded CBOR request * @param request CBOR-encoded request data * @param subscriptionId Billing ID * @param gasLimit The maximum amount of gas the request can consume * @param donID ID of the job to be invoked * @return requestId The ID of the sent request */ function sendRequestCBOR( bytes memory request, uint64 subscriptionId, uint32 gasLimit, bytes32 donID ) external onlyOwner returns (bytes32 requestId) { s_lastRequestId = _sendRequest(request, subscriptionId, gasLimit, donID); return s_lastRequestId; } /** * @dev Internal function to process the outcome of a data request. It stores the latest response or error and updates * the contract state accordingly. This function is designed to handle only one of `response` or `err` at a time, not * both. It decodes the response if present and emits events to log both raw and decoded data. * * @param requestId The unique identifier of the request, originally returned by `sendRequest`. Used to match * responses with requests. * @param response The raw aggregated response data from the external source. This data is ABI-encoded and is expected * to contain specific information (e.g., answer, updatedAt) if no error occurred. The function attempts to decode * this data if `response` is not empty. * @param err The raw aggregated error information, indicating an issue either from the user's code or within the * execution of the user Chainlink Function. * * Emits a `DecodedResponse` event if the `response` is successfully decoded, providing detailed information about the * data received. * Emits a `Response` event for every call to log the raw response and error data. * * Requirements: * - The `requestId` must match the last stored request ID to ensure the response corresponds to the latest request * sent. * - Only one of `response` or `err` should contain data for a given call; the other should be empty. */ function fulfillRequest( bytes32 requestId, bytes memory response, bytes memory err ) internal override { if (s_lastRequestId != requestId) { revert UnexpectedRequestID(requestId); } s_lastError = err; s_lastResponse = response; if (response.length > 0) { (uint256 answer, uint256 updatedAt, uint8 decimals, string memory description) = abi.decode(response, (uint256, uint256, uint8, string)); s_answer = answer; s_updatedAt = updatedAt; s_decimals = decimals; s_description = description; emit DecodedResponse(requestId, answer, updatedAt, decimals, description); } emit Response(requestId, response, err); } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const consumerAddress = \\\\\\\"0x5fC6e53646CC53f0C3575fd2c71b5056c4823f5c\\\\\\\" // REPLACE this with your Functions consumer address const subscriptionId = 139 // REPLACE this with your subscription ID\\\"};duplicate=1\",\"expected\":\"const consumerAddress = \\\"0x5fC6e53646CC53f0C3575fd2c71b5056c4823f5c\\\" // REPLACE this with your Functions consumer address const subscriptionId = 139 // REPLACE this with your subscription ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const encoded = ethers.AbiCoder.defaultAbiCoder().encode( [\\\\\\\"uint256\\\\\\\", \\\\\\\"uint256\\\\\\\", \\\\\\\"uint8\\\\\\\", \\\\\\\"string\\\\\\\"], [dataFeedResponse.answer, dataFeedResponse.updatedAt, decimals, description] )\\\"};duplicate=1\",\"expected\":\"const encoded = ethers.AbiCoder.defaultAbiCoder().encode( [\\\"uint256\\\", \\\"uint256\\\", \\\"uint8\\\", \\\"string\\\"], [dataFeedResponse.answer, dataFeedResponse.updatedAt, decimals, description] )\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const { ethers } = await import(\\\\\\\"npm:ethers@6.10.0\\\\\\\") // Import ethers.js v6.10.0 const abiCoder = ethers.AbiCoder.defaultAbiCoder() // Define the data structure const complexData = { id: 1, metadata: { description: \\\\\\\"Decentralized Oracle Network\\\\\\\", awesome: true, }, } // Define the Solidity types for encoding const types = [\\\\\\\"tuple(uint256 id, tuple(string description, bool awesome) metadata)\\\\\\\"] // Encoding the data const encodedData = abiCoder.encode(types, [complexData])\\\"};duplicate=1\",\"expected\":\"const { ethers } = await import(\\\"npm:ethers@6.10.0\\\") // Import ethers.js v6.10.0 const abiCoder = ethers.AbiCoder.defaultAbiCoder() // Define the data structure const complexData = { id: 1, metadata: { description: \\\"Decentralized Oracle Network\\\", awesome: true, }, } // Define the Solidity types for encoding const types = [\\\"tuple(uint256 id, tuple(string description, bool awesome) metadata)\\\"] // Encoding the data const encodedData = abiCoder.encode(types, [complexData])\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"node examples/12-abi-encoding/request.js\\\"};duplicate=1\",\"expected\":\"node examples/12-abi-encoding/request.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"return ethers.getBytes(encoded)\\\"};duplicate=1\",\"expected\":\"return ethers.getBytes(encoded)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"s_answer = answer; s_updatedAt = updatedAt; s_decimals = decimals; s_description = description;\\\"};duplicate=1\",\"expected\":\"s_answer = answer; s_updatedAt = updatedAt; s_decimals = decimals; s_description = description;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"{ \\\\\\\"id\\\\\\\": 1, \\\\\\\"metadata\\\\\\\": { \\\\\\\"description\\\\\\\": \\\\\\\"Decentralized Oracle Network\\\\\\\", \\\\\\\"awesome\\\\\\\": true } }\\\"};duplicate=1\",\"expected\":\"{ \\\"id\\\": 1, \\\"metadata\\\": { \\\"description\\\": \\\"Decentralized Oracle Network\\\", \\\"awesome\\\": true } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Encoding in JavaScript\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Encoding in JavaScript\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Examine the code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FunctionsConsumerDecoder.sol\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"FunctionsConsumerDecoder.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Handling complex data types with ABI Encoding and Decoding\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Handling complex data types with ABI Encoding and Decoding\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"JavaScript example\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"JavaScript example\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Tutorial\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"request.js\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"request.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"source.js\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"source.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"12-abi-encoding\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/12-abi-encoding\\\"};duplicate=1\",\"expected\":\"12-abi-encoding -> https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/12-abi-encoding\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Data Feed\\\",\\\"url\\\":\\\"/data-feeds\\\"};duplicate=1\",\"expected\":\"Chainlink Data Feed -> /data-feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions API requirements\\\",\\\"url\\\":\\\"/chainlink-functions/api-reference/javascript-source#data-encoding-functions\\\"};duplicate=1\",\"expected\":\"Chainlink Functions API requirements -> /chainlink-functions/api-reference/javascript-source#data-encoding-functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions NPM package\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/functions-toolkit\\\"};duplicate=1\",\"expected\":\"Chainlink Functions NPM package -> https://github.com/smartcontractkit/functions-toolkit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"FunctionsConsumer.sol\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/ChainlinkFunctions/FunctionsConsumer.sol\\\"};duplicate=1\",\"expected\":\"FunctionsConsumer.sol -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/ChainlinkFunctions/FunctionsConsumer.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"FunctionsConsumerDecoder contract\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/ChainlinkFunctions/FunctionsConsumerDecoder.sol\\\"};duplicate=1\",\"expected\":\"FunctionsConsumerDecoder contract -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/ChainlinkFunctions/FunctionsConsumerDecoder.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"JavaScript code\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/12-abi-encoding/source.js\\\"};duplicate=1\",\"expected\":\"JavaScript code -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/12-abi-encoding/source.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NPM README\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/functions-toolkit/blob/main/README.md\\\"};duplicate=1\",\"expected\":\"NPM README -> https://github.com/smartcontractkit/functions-toolkit/blob/main/README.md\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Set up your environment\\\",\\\"url\\\":\\\"/chainlink-functions/tutorials/importing-packages#set-up-your-environment\\\"};duplicate=1\",\"expected\":\"Set up your environment -> /chainlink-functions/tutorials/importing-packages#set-up-your-environment\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Uint8Array typed arrays\\\",\\\"url\\\":\\\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array\\\"};duplicate=1\",\"expected\":\"Uint8Array typed arrays -> https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Uint8Array\\\",\\\"url\\\":\\\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array\\\"};duplicate=1\",\"expected\":\"Uint8Array -> https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Using Imports with Functions\\\",\\\"url\\\":\\\"/chainlink-functions/tutorials/importing-packages#sourcejs\\\"};duplicate=1\",\"expected\":\"Using Imports with Functions -> /chainlink-functions/tutorials/importing-packages#sourcejs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Using Imports with Functions\\\",\\\"url\\\":\\\"/chainlink-functions/tutorials/importing-packages\\\"};duplicate=1\",\"expected\":\"Using Imports with Functions -> /chainlink-functions/tutorials/importing-packages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Using Imports with Functions\\\",\\\"url\\\":\\\"/chainlink-functions/tutorials/importing-packages\\\"};duplicate=2\",\"expected\":\"Using Imports with Functions -> /chainlink-functions/tutorials/importing-packages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"decimals\\\",\\\"url\\\":\\\"/data-feeds/api-reference#decimals\\\"};duplicate=1\",\"expected\":\"decimals -> /data-feeds/api-reference#decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"defaultAbiCoder.encode\\\",\\\"url\\\":\\\"https://docs.ethers.org/v6/api/abi/abi-coder/#AbiCoder-encode\\\"};duplicate=1\",\"expected\":\"defaultAbiCoder.encode -> https://docs.ethers.org/v6/api/abi/abi-coder/#AbiCoder-encode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"description\\\",\\\"url\\\":\\\"/data-feeds/api-reference#description\\\"};duplicate=1\",\"expected\":\"description -> /data-feeds/api-reference#description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ethers\\\",\\\"url\\\":\\\"https://docs.ethers.org/v5/\\\"};duplicate=1\",\"expected\":\"ethers -> https://docs.ethers.org/v5/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ethers\\\",\\\"url\\\":\\\"https://www.npmjs.com/package/ethers\\\"};duplicate=1\",\"expected\":\"ethers -> https://www.npmjs.com/package/ethers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"examples/12-abi-encoding directory\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/12-abi-encoding\\\"};duplicate=1\",\"expected\":\"examples/12-abi-encoding directory -> https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/12-abi-encoding\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"fs\\\",\\\"url\\\":\\\"https://nodejs.org/api/fs.html\\\"};duplicate=1\",\"expected\":\"fs -> https://nodejs.org/api/fs.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getBytes\\\",\\\"url\\\":\\\"https://docs.ethers.org/v6/api/utils/#getBytes\\\"};duplicate=1\",\"expected\":\"getBytes -> https://docs.ethers.org/v6/api/utils/#getBytes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"latestRoundData\\\",\\\"url\\\":\\\"/data-feeds/api-reference#latestrounddata\\\"};duplicate=1\",\"expected\":\"latestRoundData -> /data-feeds/api-reference#latestrounddata\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"official documentation\\\",\\\"url\\\":\\\"https://www.npmjs.com/package/@chainlink/env-enc\\\"};duplicate=1\",\"expected\":\"official documentation -> https://www.npmjs.com/package/@chainlink/env-enc\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"path\\\",\\\"url\\\":\\\"https://nodejs.org/docs/latest/api/path.html\\\"};duplicate=1\",\"expected\":\"path -> https://nodejs.org/docs/latest/api/path.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"request.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/12-abi-encoding/request.js\\\"};duplicate=1\",\"expected\":\"request.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/12-abi-encoding/request.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"source file\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/12-abi-encoding/source.js\\\"};duplicate=1\",\"expected\":\"source file -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/12-abi-encoding/source.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", which specify that the source code must return a Uint8Array representing the bytes for on-chain use.\\\"};duplicate=1\",\"expected\":\", which specify that the source code must return a Uint8Array representing the bytes for on-chain use.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". It then uses the ethers library to encode the response of these functions into a single hexadecimal string.\\\"};duplicate=1\",\"expected\":\". It then uses the ethers library to encode the response of these functions into a single hexadecimal string.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". The code is self-explanatory and has comments to help you understand all the steps.\\\"};duplicate=1\",\"expected\":\". The code is self-explanatory and has comments to help you understand all the steps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". This step ensures compliance with the\\\"};duplicate=1\",\"expected\":\". This step ensures compliance with the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"../abi/functionsDecoder.json: The abi of the contract your script will interact with. Note: The script was tested with this\\\"};duplicate=1\",\"expected\":\"../abi/functionsDecoder.json: The abi of the contract your script will interact with. Note: The script was tested with this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xb83E47C2bC239B3bf370bc41e1459A34b41238D0\\\"};duplicate=1\",\"expected\":\"0xb83E47C2bC239B3bf370bc41e1459A34b41238D0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": Ethers.js library, enables the script to interact with the blockchain.\\\"};duplicate=1\",\"expected\":\": Ethers.js library, enables the script to interact with the blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": Used to read the\\\"};duplicate=1\",\"expected\":\": Used to read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"@chainlink/env-enc: A tool for loading and storing encrypted environment variables. Read the\\\"};duplicate=1\",\"expected\":\"@chainlink/env-enc: A tool for loading and storing encrypted environment variables. Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"@chainlink/functions-toolkit: Chainlink Functions NPM package. All its utilities are documented in the\\\"};duplicate=1\",\"expected\":\"@chainlink/functions-toolkit: Chainlink Functions NPM package. All its utilities are documented in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add your consumer contract address to your subscription on Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Add your consumer contract address to your subscription on Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After encoding the data, it's necessary to format it as a Uint8Array array for smart contract interactions and blockchain transactions. In Solidity, the data type for byte arrays data is bytes. However, when working in a JavaScript environment, such as when using the ethers.js library, the equivalent data structure is a Uint8Array.\\\"};duplicate=1\",\"expected\":\"After encoding the data, it's necessary to format it as a Uint8Array array for smart contract interactions and blockchain transactions. In Solidity, the data type for byte arrays data is bytes. However, when working in a JavaScript environment, such as when using the ethers.js library, the equivalent data structure is a Uint8Array.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy the contract address.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy the contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"An array of Solidity data types.\\\"};duplicate=1\",\"expected\":\"An array of Solidity data types.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Because Chainlink Functions supports important external modules, you can import a web3 library such as ethers.js and perform encoding. To encode complex data structures, you can use the\\\"};duplicate=1\",\"expected\":\"Because Chainlink Functions supports important external modules, you can import a web3 library such as ethers.js and perform encoding. To encode complex data structures, you can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the s_answer, s_updatedAt, s_decimals, and s_description functions of your consumer contract to fetch the decoded values.\\\"};duplicate=1\",\"expected\":\"Call the s_answer, s_updatedAt, s_decimals, and s_description functions of your consumer contract to fetch the decoded values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the sendRequest function of your consumer contract.\\\"};duplicate=1\",\"expected\":\"Call the sendRequest function of your consumer contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Consider a scenario where a contract needs to interact with a data structure that encapsulates multiple properties, including nested objects:\\\"};duplicate=1\",\"expected\":\"Consider a scenario where a contract needs to interact with a data structure that encapsulates multiple properties, including nested objects:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Definition of necessary identifiers:\\\"};duplicate=1\",\"expected\":\"Definition of necessary identifiers:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Estimating the costs:\\\"};duplicate=1\",\"expected\":\"Estimating the costs:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Finally, it uses the ethers library\\\"};duplicate=1\",\"expected\":\"Finally, it uses the ethers library\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Here's how you can encode the aforementioned complex data:\\\"};duplicate=1\",\"expected\":\"Here's how you can encode the aforementioned complex data:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialization of ethers signer and provider objects. The signer is used to make transactions on the blockchain, and the provider reads data from the blockchain.\\\"};duplicate=1\",\"expected\":\"Initialization of ethers signer and provider objects. The signer is used to make transactions on the blockchain, and the provider reads data from the blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialize a ResponseListener from the Functions NPM package and then call the listenForResponseFromTransaction function to wait for a response. By default, this function waits for five minutes.\\\"};duplicate=1\",\"expected\":\"Initialize a ResponseListener from the Functions NPM package and then call the listenForResponseFromTransaction function to wait for a response. By default, this function waits for five minutes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialize a SubscriptionManager from the Functions NPM package, then call the estimateFunctionsRequestCost.\\\"};duplicate=1\",\"expected\":\"Initialize a SubscriptionManager from the Functions NPM package, then call the estimateFunctionsRequestCost.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialize your functions consumer contract using the contract address, abi, and ethers signer.\\\"};duplicate=1\",\"expected\":\"Initialize your functions consumer contract using the contract address, abi, and ethers signer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It uses Solidity abi.decode to decode the response to retrieve the answer, updatedAt, decimals, and description.\\\"};duplicate=1\",\"expected\":\"It uses Solidity abi.decode to decode the response to retrieve the answer, updatedAt, decimals, and description.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log the decoded values to the console.\\\"};duplicate=1\",\"expected\":\"Log the decoded values to the console.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Make a request:\\\"};duplicate=1\",\"expected\":\"Make a request:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Make sure you have correctly set up your environment first. If you haven't already, follow the\\\"};duplicate=1\",\"expected\":\"Make sure you have correctly set up your environment first. If you haven't already, follow the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Making a Chainlink Functions request:\\\"};duplicate=1\",\"expected\":\"Making a Chainlink Functions request:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the file request.js, located in the\\\"};duplicate=1\",\"expected\":\"Open the file request.js, located in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Read the decoded response:\\\"};duplicate=1\",\"expected\":\"Read the decoded response:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Read the response of the simulation. If successful, use the Functions NPM package decodeResult function and ReturnType enum to decode the response to the expected returned type (ReturnType.bytes in this example).\\\"};duplicate=1\",\"expected\":\"Read the response of the simulation. If successful, use the Functions NPM package decodeResult function and ReturnType enum to decode the response to the expected returned type (ReturnType.bytes in this example).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace the consumer contract address and the subscription ID with your own values.\\\"};duplicate=1\",\"expected\":\"Replace the consumer contract address and the subscription ID with your own values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Simulating your request in a local sandbox environment:\\\"};duplicate=1\",\"expected\":\"Simulating your request in a local sandbox environment:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The DON successfully fulfilled your request. The total cost was: 0.282344694329387405 LINK.\\\"};duplicate=1\",\"expected\":\"The DON successfully fulfilled your request. The total cost was: 0.282344694329387405 LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Decentralized Oracle Network will run the\\\"};duplicate=1\",\"expected\":\"The Decentralized Oracle Network will run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The consumer contract received a response in hexadecimal string with a value of 0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000. This value is the ABI encoded response of the latestRoundData, decimals, and description of the BTC / USD price feed. This value is then decoded and stored in the consumer contract.\\\"};duplicate=1\",\"expected\":\"The consumer contract received a response in hexadecimal string with a value of 0x0000000000000000000000000000000000000000000000000000063c3570cc8400000000000000000000000000000000000000000000000000000000661969f7000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009425443202f205553440000000000000000000000000000000000000000000000. This value is the ABI encoded response of the latestRoundData, decimals, and description of the BTC / USD price feed. This value is then decoded and stored in the consumer contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The corresponding data in JavaScript format.\\\"};duplicate=1\",\"expected\":\"The corresponding data in JavaScript format.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ethers.js library provides the\\\"};duplicate=1\",\"expected\":\"The ethers.js library provides the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The example source.js file is similar to the one used in the\\\"};duplicate=1\",\"expected\":\"The example source.js file is similar to the one used in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The fulfillment costs are estimated before making the request.\\\"};duplicate=1\",\"expected\":\"The fulfillment costs are estimated before making the request.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The output of the example gives you the following information:\\\"};duplicate=1\",\"expected\":\"The output of the example gives you the following information:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The primary function that the script executes is makeRequestSepolia. This function consists of five main parts:\\\"};duplicate=1\",\"expected\":\"The primary function that the script executes is makeRequestSepolia. This function consists of five main parts:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The response is returned in Juels (1 LINK = 10**18 Juels). Use the ethers.utils.formatEther utility function to convert the output to LINK.\\\"};duplicate=1\",\"expected\":\"The response is returned in Juels (1 LINK = 10**18 Juels). Use the ethers.utils.formatEther utility function to convert the output to LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script calls the consumer contract to fetch the decoded values and then logs them to the console. The output is Fetched BTC / USD price: 6855664389252 (updatedAt: 1712941559) (decimals: 8) (description: BTC / USD).\\\"};duplicate=1\",\"expected\":\"The script calls the consumer contract to fetch the decoded values and then logs them to the console. The output is Fetched BTC / USD price: 6855664389252 (updatedAt: 1712941559) (decimals: 8) (description: BTC / USD).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script has two hardcoded values that you have to change using your own Functions consumer contract and subscription ID:\\\"};duplicate=1\",\"expected\":\"The script has two hardcoded values that you have to change using your own Functions consumer contract and subscription ID:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script imports:\\\"};duplicate=1\",\"expected\":\"The script imports:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script runs your function in a sandbox environment before making an onchain transaction:\\\"};duplicate=1\",\"expected\":\"The script runs your function in a sandbox environment before making an onchain transaction:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Then stores the decoded values in the contract state.\\\"};duplicate=1\",\"expected\":\"Then stores the decoded values in the contract state.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This Solidity contract is similar to the\\\"};duplicate=1\",\"expected\":\"This Solidity contract is similar to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This explanation focuses on the\\\"};duplicate=1\",\"expected\":\"This explanation focuses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This section details the process of encoding complex data types into\\\"};duplicate=1\",\"expected\":\"This section details the process of encoding complex data types into\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial demonstrates using the\\\"};duplicate=1\",\"expected\":\"This tutorial demonstrates using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To run the example:\\\"};duplicate=1\",\"expected\":\"To run the example:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transferring and storing this kind of structured data requires encoding it into a format (array of 8-bit unsigned integers) that smart contracts can accept and process.\\\"};duplicate=1\",\"expected\":\"Transferring and storing this kind of structured data requires encoding it into a format (array of 8-bit unsigned integers) that smart contracts can accept and process.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Upon reception of the response, use the Functions NPM package decodeResult function and ReturnType enum to decode the response to the expected returned type (ReturnType.bytes in this example).\\\"};duplicate=1\",\"expected\":\"Upon reception of the response, use the Functions NPM package decodeResult function and ReturnType enum to decode the response to the expected returned type (ReturnType.bytes in this example).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Use simulateScript from the Chainlink Functions NPM package.\\\"};duplicate=1\",\"expected\":\"Use simulateScript from the Chainlink Functions NPM package.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Waiting for the response:\\\"};duplicate=1\",\"expected\":\"Waiting for the response:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can locate the scripts used in this tutorial in the\\\"};duplicate=1\",\"expected\":\"You can locate the scripts used in this tutorial in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your request is first run on a sandbox environment to ensure it is correctly configured.\\\"};duplicate=1\",\"expected\":\"Your request is first run on a sandbox environment to ensure it is correctly configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your request was successfully sent to Chainlink Functions. The transaction in this example is 0x5618089ec9b5e662ec72c81241d78cb6daa135ecc3fa3a33032d910e3b47c2b1, and the request ID is 0xdf22fa28c81a3ea78f356334b6d28d969e953009fae8ece4fe544f2eb466419b.\\\"};duplicate=1\",\"expected\":\"Your request was successfully sent to Chainlink Functions. The transaction in this example is 0x5618089ec9b5e662ec72c81241d78cb6daa135ecc3fa3a33032d910e3b47c2b1, and the request ID is 0xdf22fa28c81a3ea78f356334b6d28d969e953009fae8ece4fe544f2eb466419b.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and returns the encoded data as a hexadecimal string.\\\"};duplicate=1\",\"expected\":\"and returns the encoded data as a hexadecimal string.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and\\\"};duplicate=1\",\"expected\":\"and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"args: During the execution of your function, These arguments are passed to the source code.\\\"};duplicate=1\",\"expected\":\"args: During the execution of your function, These arguments are passed to the source code.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contract used in the\\\"};duplicate=1\",\"expected\":\"contract used in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"donId: Identifier of the DON that will fulfill your requests on Sepolia.\\\"};duplicate=1\",\"expected\":\"donId: Identifier of the DON that will fulfill your requests on Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"explorerUrl: Block explorer URL of the Sepolia testnet.\\\"};duplicate=1\",\"expected\":\"explorerUrl: Block explorer URL of the Sepolia testnet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"folder.\\\"};duplicate=1\",\"expected\":\"folder.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function from the ethers.js library. The function takes two arguments:\\\"};duplicate=1\",\"expected\":\"function from the ethers.js library. The function takes two arguments:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"functions of a price feed contract based on the AggregatorV3Interface. After retrieving the necessary data, the guide shows how to use ABI encoding to encode these responses into a single hexadecimal string and then convert this string to a\\\"};duplicate=1\",\"expected\":\"functions of a price feed contract based on the AggregatorV3Interface. After retrieving the necessary data, the guide shows how to use ABI encoding to encode these responses into a single hexadecimal string and then convert this string to a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"functions of a\\\"};duplicate=1\",\"expected\":\"functions of a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit: Maximum gas that Chainlink Functions can use when transmitting the response to your contract.\\\"};duplicate=1\",\"expected\":\"gasLimit: Maximum gas that Chainlink Functions can use when transmitting the response to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your own JavaScript/TypeScript project to send requests to a DON. The code is self-explanatory and has comments to help you understand all the steps.\\\"};duplicate=1\",\"expected\":\"in your own JavaScript/TypeScript project to send requests to a DON. The code is self-explanatory and has comments to help you understand all the steps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"library to interact with smart contract functions through a JSON RPC provider. It involves calling the\\\"};duplicate=1\",\"expected\":\"library to interact with smart contract functions through a JSON RPC provider. It involves calling the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. For Ethereum Sepolia, the router address is\\\"};duplicate=1\",\"expected\":\"page. For Ethereum Sepolia, the router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"routerAddress: Chainlink Functions router address on Sepolia.\\\"};duplicate=1\",\"expected\":\"routerAddress: Chainlink Functions router address on Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script and shows how to use the\\\"};duplicate=1\",\"expected\":\"script and shows how to use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section of the\\\"};duplicate=1\",\"expected\":\"section of the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"source: The source code must be a string object. That's why we use fs.readFileSync to read source.js and then call toString() to get the content as a string object.\\\"};duplicate=1\",\"expected\":\"source: The source code must be a string object. That's why we use fs.readFileSync to read source.js and then call toString() to get the content as a string object.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to convert the hexadecimal string to a Uint8Array:\\\"};duplicate=1\",\"expected\":\"to convert the hexadecimal string to a Uint8Array:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to fulfill the Ethereum Virtual Machine (EVM) data handling requirements for transactions and smart contract interactions. It will then outline the steps for decoding these byte arrays to align with corresponding structures defined in Solidity.\\\"};duplicate=1\",\"expected\":\"to fulfill the Ethereum Virtual Machine (EVM) data handling requirements for transactions and smart contract interactions. It will then outline the steps for decoding these byte arrays to align with corresponding structures defined in Solidity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more.\\\"};duplicate=1\",\"expected\":\"to learn more.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tutorial. It uses a JSON RPC call to the\\\"};duplicate=1\",\"expected\":\"tutorial. It uses a JSON RPC call to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tutorial. The main difference is the processing of the response in the fulfillRequest function:\\\"};duplicate=1\",\"expected\":\"tutorial. The main difference is the processing of the response in the fulfillRequest function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tutorial.\\\"};duplicate=1\",\"expected\":\"tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/abi-decoding\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-multiple-calls\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-multiple-calls\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-multiple-calls\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-multiple-calls\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=4\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-post-data\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-post-data\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-post-data\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-post-data\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=4\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-query-parameters\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-query-parameters\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-query-parameters\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-query-parameters\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=4\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=4\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets-gist\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets-gist\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets-gist\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets-offchain\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets-offchain\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/api-use-secrets-offchain\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"$ node examples/10-automate-functions/readLatest.js secp256k1 unavailable, reverting to browser version Last request ID is 0xa6c0a45c9a24981e0112381f9addeeb8f8a9ad0ea91dd0426703eaa11d5a773a ✅ Decoded response to uint256: 6675568n\\\"};duplicate=1\",\"expected\":\"$ node examples/10-automate-functions/readLatest.js secp256k1 unavailable, reverting to browser version Last request ID is 0xa6c0a45c9a24981e0112381f9addeeb8f8a9ad0ea91dd0426703eaa11d5a773a ✅ Decoded response to uint256: 6675568n\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"$ node examples/10-automate-functions/updateRequest.js secp256k1 unavailable, reverting to browser version Start simulation... Simulation result { capturedTerminalOutput: 'Median Bitcoin price: 66725.29\\\\\\\\n', responseBytesHexstring: '0x000000000000000000000000000000000000000000000000000000000065d091' } ✅ Decoded response to uint256: 6672529n Make request... Upload encrypted secret to gateways https://01.functions-gateway.testnet.chain.link/,https://02.functions-gateway.testnet.chain.link/. slotId 0. Expiration in minutes: 150 ✅ Secrets uploaded properly to gateways https://01.functions-gateway.testnet.chain.link/,https://02.functions-gateway.testnet.chain.link/! Gateways response: { version: 1712948932, success: true } ✅ Automated Functions request settings updated! Transaction hash 0x670c6a768a3fbccdcc344e51827ba41a13a579427272522550ad5810ca5b81a3 - Check the explorer https://sepolia.etherscan.io/tx/0x670c6a768a3fbccdcc344e51827ba41a13a579427272522550ad5810ca5b81a3\\\"};duplicate=1\",\"expected\":\"$ node examples/10-automate-functions/updateRequest.js secp256k1 unavailable, reverting to browser version Start simulation... Simulation result { capturedTerminalOutput: 'Median Bitcoin price: 66725.29\\\\n', responseBytesHexstring: '0x000000000000000000000000000000000000000000000000000000000065d091' } ✅ Decoded response to uint256: 6672529n Make request... Upload encrypted secret to gateways https://01.functions-gateway.testnet.chain.link/,https://02.functions-gateway.testnet.chain.link/. slotId 0. Expiration in minutes: 150 ✅ Secrets uploaded properly to gateways https://01.functions-gateway.testnet.chain.link/,https://02.functions-gateway.testnet.chain.link/! Gateways response: { version: 1712948932, success: true } ✅ Automated Functions request settings updated! Transaction hash 0x670c6a768a3fbccdcc344e51827ba41a13a579427272522550ad5810ca5b81a3 - Check the explorer https://sepolia.etherscan.io/tx/0x670c6a768a3fbccdcc344e51827ba41a13a579427272522550ad5810ca5b81a3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const consumerAddress = \\\\\\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\\\\\" // REPLACE this with your Functions consumer address const subscriptionId = 3 // REPLACE this with your subscription ID\\\"};duplicate=1\",\"expected\":\"const consumerAddress = \\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\" // REPLACE this with your Functions consumer address const subscriptionId = 3 // REPLACE this with your subscription ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const consumerAddress = \\\\\\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\\\\\" // REPLACE this with your Functions consumer address\\\"};duplicate=1\",\"expected\":\"const consumerAddress = \\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\" // REPLACE this with your Functions consumer address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"node examples/10-automate-functions/readLatest.js\\\"};duplicate=1\",\"expected\":\"node examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"node examples/10-automate-functions/updateRequest.js\\\"};duplicate=1\",\"expected\":\"node examples/10-automate-functions/updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Add your Consumer contract to your Functions subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Add your Consumer contract to your Functions subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"AutomatedFunctionsConsumer.sol\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"AutomatedFunctionsConsumer.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Check Result\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Check Result\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Clean up\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Clean up\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Configure Chainlink Automation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Configure Chainlink Automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Configure your Consumer contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Configure your Consumer contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Examine the code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"readLatest.js\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"source.js\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"source.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"updateRequest.js\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"10-automate-functions\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/10-automate-functions\\\"};duplicate=1\",\"expected\":\"10-automate-functions -> https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/10-automate-functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"AutomatedFunctionsConsumer contract\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/ChainlinkFunctions/AutomatedFunctionsConsumerExample.sol\\\"};duplicate=1\",\"expected\":\"AutomatedFunctionsConsumer contract -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/ChainlinkFunctions/AutomatedFunctionsConsumerExample.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation Job Scheduler\\\",\\\"url\\\":\\\"/chainlink-automation/guides/job-scheduler\\\"};duplicate=1\",\"expected\":\"Automation Job Scheduler -> /chainlink-automation/guides/job-scheduler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Call Multiple Data Sources\\\",\\\"url\\\":\\\"/chainlink-functions/tutorials/api-multiple-calls\\\"};duplicate=1\",\"expected\":\"Call Multiple Data Sources -> /chainlink-functions/tutorials/api-multiple-calls\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation App\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=1\",\"expected\":\"Chainlink Automation App -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation App\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=2\",\"expected\":\"Chainlink Automation App -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation App\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=3\",\"expected\":\"Chainlink Automation App -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions NPM package\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/functions-toolkit\\\"};duplicate=1\",\"expected\":\"Chainlink Functions NPM package -> https://github.com/smartcontractkit/functions-toolkit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions Subscription Manager\\\",\\\"url\\\":\\\"/chainlink-functions/resources/subscriptions\\\"};duplicate=1\",\"expected\":\"Chainlink Functions Subscription Manager -> /chainlink-functions/resources/subscriptions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions Subscription Manager\\\",\\\"url\\\":\\\"https://functions.chain.link/\\\"};duplicate=1\",\"expected\":\"Chainlink Functions Subscription Manager -> https://functions.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"url\\\":\\\"#examine-the-code\\\"};duplicate=1\",\"expected\":\"Examine the code -> #examine-the-code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"NPM README\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/functions-toolkit/blob/main/README.md\\\"};duplicate=1\",\"expected\":\"NPM README -> https://github.com/smartcontractkit/functions-toolkit/blob/main/README.md\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"automatedFunctions.json\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/abi/automatedFunctions.json\\\"};duplicate=1\",\"expected\":\"automatedFunctions.json -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/abi/automatedFunctions.json\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"ethers\\\",\\\"url\\\":\\\"https://docs.ethers.org/v5/\\\"};duplicate=1\",\"expected\":\"ethers -> https://docs.ethers.org/v5/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"fs\\\",\\\"url\\\":\\\"https://nodejs.org/api/fs.html\\\"};duplicate=1\",\"expected\":\"fs -> https://nodejs.org/api/fs.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"official documentation\\\",\\\"url\\\":\\\"https://www.npmjs.com/package/@chainlink/env-enc\\\"};duplicate=1\",\"expected\":\"official documentation -> https://www.npmjs.com/package/@chainlink/env-enc\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"path\\\",\\\"url\\\":\\\"https://nodejs.org/docs/latest/api/path.html\\\"};duplicate=1\",\"expected\":\"path -> https://nodejs.org/docs/latest/api/path.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"readLatest.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\\\"};duplicate=1\",\"expected\":\"readLatest.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"readLatest\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\\\"};duplicate=1\",\"expected\":\"readLatest -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"readLatest\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\\\"};duplicate=2\",\"expected\":\"readLatest -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"source file\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/5-use-secrets-threshold/source.js\\\"};duplicate=1\",\"expected\":\"source file -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/5-use-secrets-threshold/source.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"updateRequest.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\\\"};duplicate=1\",\"expected\":\"updateRequest.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"updateRequest.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\\\"};duplicate=2\",\"expected\":\"updateRequest.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"updateRequest.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\\\"};duplicate=3\",\"expected\":\"updateRequest.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=1\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=2\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Register Functions consumer with automation scheduler)\\\"};duplicate=1\",\"expected\":\"(Image: Register Functions consumer with automation scheduler)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). To do so, follow these steps:\\\"};duplicate=1\",\"expected\":\"). To do so, follow these steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". The upkeep balance pays Chainlink Automation Network to send your requests according to your provided time interval. Chainlink Automation will not trigger your requests if your upkeep balance runs low.\\\"};duplicate=1\",\"expected\":\". The upkeep balance pays Chainlink Automation Network to send your requests according to your provided time interval. Chainlink Automation will not trigger your requests if your upkeep balance runs low.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Use the following upkeep settings:\\\"};duplicate=1\",\"expected\":\". Use the following upkeep settings:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"../abi/automatedFunctions.json: The ABI of the contract your script will interact with. Note: The script was tested with this\\\"};duplicate=1\",\"expected\":\"../abi/automatedFunctions.json: The ABI of the contract your script will interact with. Note: The script was tested with this\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xb83E47C2bC239B3bf370bc41e1459A34b41238D0\\\"};duplicate=1\",\"expected\":\"0xb83E47C2bC239B3bf370bc41e1459A34b41238D0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000\\\"};duplicate=1\",\"expected\":\"1000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": Ethers.js library, enables the script to interact with the blockchain.\\\"};duplicate=1\",\"expected\":\": Ethers.js library, enables the script to interact with the blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\": Used to read the\\\"};duplicate=1\",\"expected\":\": Used to read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"@chainlink/env-enc: A tool for loading and storing encrypted environment variables. Read the\\\"};duplicate=1\",\"expected\":\"@chainlink/env-enc: A tool for loading and storing encrypted environment variables. Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"@chainlink/functions-toolkit: Chainlink Functions NPM package. All its utilities are documented in the\\\"};duplicate=1\",\"expected\":\"@chainlink/functions-toolkit: Chainlink Functions NPM package. All its utilities are documented in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI: copy/paste the ABI from\\\"};duplicate=1\",\"expected\":\"ABI: copy/paste the ABI from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add your contract as an approved consumer contract to your Functions subscription using the\\\"};duplicate=1\",\"expected\":\"Add your contract as an approved consumer contract to your Functions subscription using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy your contract address.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you finish the guide, cancel your upkeep in the\\\"};duplicate=1\",\"expected\":\"After you finish the guide, cancel your upkeep in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"As you can see in the History table, the upkeep is running every 15 minutes. On your terminal, run the\\\"};duplicate=1\",\"expected\":\"As you can see in the History table, the upkeep is running every 15 minutes. On your terminal, run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this stage, your Functions consumer contract is configured to get the median Bitcoin price every 15 minutes.\\\"};duplicate=1\",\"expected\":\"At this stage, your Functions consumer contract is configured to get the median Bitcoin price every 15 minutes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the buildDONHostedEncryptedSecretsReference function of the SecretsManager instance and use the slot ID and version to encode the DON-hosted encrypted secrets reference.\\\"};duplicate=1\",\"expected\":\"Call the buildDONHostedEncryptedSecretsReference function of the SecretsManager instance and use the slot ID and version to encode the DON-hosted encrypted secrets reference.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the updateRequest function of your consumer contract.\\\"};duplicate=1\",\"expected\":\"Call the updateRequest function of your consumer contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Call the uploadEncryptedSecretsToDON function of the SecretsManager instance. This function returns an object containing a success boolean as long as version, the secret version on the DON storage.\\\"};duplicate=1\",\"expected\":\"Call the uploadEncryptedSecretsToDON function of the SecretsManager instance. This function returns an object containing a success boolean as long as version, the secret version on the DON storage.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on transact. A Metamask popup appears and asks you to confirm the transaction.\\\"};duplicate=1\",\"expected\":\"Click on transact. A Metamask popup appears and asks you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on your upkeep to fetch de details:\\\"};duplicate=1\",\"expected\":\"Click on your upkeep to fetch de details:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configure the request details by calling the updateRequest function. This step stores the encoded request (source code, reference to encrypted secrets if any, arguments), gas limit, subscription ID, and job ID in the contract storage (see\\\"};duplicate=1\",\"expected\":\"Configure the request details by calling the updateRequest function. This step stores the encoded request (source code, reference to encrypted secrets if any, arguments), gas limit, subscription ID, and job ID in the contract storage (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configure your contract so only the upkeep contract can call the sendRequestCBOR function. This security measure is important to prevent anyone from calling several times sendRequestCBOR and draining your Functions subscription balance. Follow these steps:\\\"};duplicate=1\",\"expected\":\"Configure your contract so only the upkeep contract can call the sendRequestCBOR function. This security measure is important to prevent anyone from calling several times sendRequestCBOR and draining your Functions subscription balance. Follow these steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Confirm the transaction and wait for it to be confirmed.\\\"};duplicate=1\",\"expected\":\"Confirm the transaction and wait for it to be confirmed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Definition of necessary identifiers:\\\"};duplicate=1\",\"expected\":\"Definition of necessary identifiers:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encode the request data offchain using the buildRequestCBOR function from the Functions NPM package.\\\"};duplicate=1\",\"expected\":\"Encode the request data offchain using the buildRequestCBOR function from the Functions NPM package.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encrypt the secrets, upload the encrypted secrets to the DON, and then encode the reference to the DON-hosted encrypted secrets. This is done in three steps:\\\"};duplicate=1\",\"expected\":\"Encrypt the secrets, upload the encrypted secrets to the DON, and then encode the reference to the DON-hosted encrypted secrets. This is done in three steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fill in the setAutomationCronContract function with the upkeep contract address you copied from the previous step.\\\"};duplicate=1\",\"expected\":\"Fill in the setAutomationCronContract function with the upkeep contract address you copied from the previous step.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit:\\\"};duplicate=1\",\"expected\":\"Gas limit:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go to the\\\"};duplicate=1\",\"expected\":\"Go to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialization of ethers signer and provider objects. The signer is used to make transactions on the blockchain, and the provider reads data from the blockchain.\\\"};duplicate=1\",\"expected\":\"Initialization of ethers signer and provider objects. The signer is used to make transactions on the blockchain, and the provider reads data from the blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialize a SecretsManager instance from the Functions NPM package, then call the encryptSecrets function.\\\"};duplicate=1\",\"expected\":\"Initialize a SecretsManager instance from the Functions NPM package, then call the encryptSecrets function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initialize your functions consumer contract using the contract address, abi, and ethers signer.\\\"};duplicate=1\",\"expected\":\"Initialize your functions consumer contract using the contract address, abi, and ethers signer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Monitor your balances\\\"};duplicate=1\",\"expected\":\"NOTE: Monitor your balances\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name: Give your upkeep a name\\\"};duplicate=1\",\"expected\":\"Name: Give your upkeep a name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On RemixIDE, under the Deploy & Transactions tab, locate your deployed Functions consumer contract.\\\"};duplicate=1\",\"expected\":\"On RemixIDE, under the Deploy & Transactions tab, locate your deployed Functions consumer contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On a terminal, change directories to the\\\"};duplicate=1\",\"expected\":\"On a terminal, change directories to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open readLatest.js and replace the consumer contract address with your own values:\\\"};duplicate=1\",\"expected\":\"Open readLatest.js and replace the consumer contract address with your own values:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the list of functions.\\\"};duplicate=1\",\"expected\":\"Open the list of functions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open\\\"};duplicate=1\",\"expected\":\"Open\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Output example:\\\"};duplicate=1\",\"expected\":\"Output example:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Output example:\\\"};duplicate=2\",\"expected\":\"Output example:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Read the response of the simulation. If successful, use the Functions NPM package decodeResult function and ReturnType enum to decode the response to the expected returned type (ReturnType.uint256 in this example).\\\"};duplicate=1\",\"expected\":\"Read the response of the simulation. If successful, use the Functions NPM package decodeResult function and ReturnType enum to decode the response to the expected returned type (ReturnType.uint256 in this example).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the\\\"};duplicate=1\",\"expected\":\"Run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the\\\"};duplicate=2\",\"expected\":\"Run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Simulating your request in a local sandbox environment:\\\"};duplicate=1\",\"expected\":\"Simulating your request in a local sandbox environment:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Starting balance (LINK):\\\"};duplicate=1\",\"expected\":\"Starting balance (LINK):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Target contract address: The address of the automated Functions consumer contract that you deployed\\\"};duplicate=1\",\"expected\":\"Target contract address: The address of the automated Functions consumer contract that you deployed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Target function: sendRequestCBOR\\\"};duplicate=1\",\"expected\":\"Target function: sendRequestCBOR\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Functions consumer contract's request details are updated.\\\"};duplicate=1\",\"expected\":\"The Functions consumer contract's request details are updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The JavaScript code is similar to the\\\"};duplicate=1\",\"expected\":\"The JavaScript code is similar to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The consumer contract that you deployed is designed to be used with a time-based automation. Follow the instructions in the\\\"};duplicate=1\",\"expected\":\"The consumer contract that you deployed is designed to be used with a time-based automation. Follow the instructions in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The encrypted secrets were uploaded to the secrets endpoint https://01.functions-gateway.testnet.chain.link/user.\\\"};duplicate=1\",\"expected\":\"The encrypted secrets were uploaded to the secrets endpoint https://01.functions-gateway.testnet.chain.link/user.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The output of the example gives you the following information:\\\"};duplicate=1\",\"expected\":\"The output of the example gives you the following information:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The primary function that the script executes is updateRequestSepolia. This function consists of five main parts:\\\"};duplicate=1\",\"expected\":\"The primary function that the script executes is updateRequestSepolia. This function consists of five main parts:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script contains a hardcoded value that you must replace with your own Functions consumer contract address:\\\"};duplicate=1\",\"expected\":\"The script contains a hardcoded value that you must replace with your own Functions consumer contract address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script has two hardcoded values that you have to change using your own Functions consumer contract and subscription ID:\\\"};duplicate=1\",\"expected\":\"The script has two hardcoded values that you have to change using your own Functions consumer contract and subscription ID:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The script imports:\\\"};duplicate=1\",\"expected\":\"The script imports:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There are two balances that you must monitor:\\\"};duplicate=1\",\"expected\":\"There are two balances that you must monitor:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This explanation focuses on the\\\"};duplicate=1\",\"expected\":\"This explanation focuses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This explanation focuses on the\\\"};duplicate=2\",\"expected\":\"This explanation focuses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Time interval: Every 15 minutes\\\"};duplicate=1\",\"expected\":\"Time interval: Every 15 minutes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Trigger: Time-based\\\"};duplicate=1\",\"expected\":\"Trigger: Time-based\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Two important steps are done here:\\\"};duplicate=1\",\"expected\":\"Two important steps are done here:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Update the Functions consumer contract:\\\"};duplicate=1\",\"expected\":\"Update the Functions consumer contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Use simulateScript from the Chainlink Functions NPM package.\\\"};duplicate=1\",\"expected\":\"Use simulateScript from the Chainlink Functions NPM package.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can leave the other settings at their default values for the example in this tutorial. Note: After creation, check your upkeep details and note the address of the upkeep contract. The upkeep contract is responsible for calling your Functions consumer contract at regular times intervals.\\\"};duplicate=1\",\"expected\":\"You can leave the other settings at their default values for the example in this tutorial. Note: After creation, check your upkeep details and note the address of the upkeep contract. The upkeep contract is responsible for calling your Functions consumer contract at regular times intervals.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your request is first run on a sandbox environment to ensure it is correctly configured.\\\"};duplicate=1\",\"expected\":\"Your request is first run on a sandbox environment to ensure it is correctly configured.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your subscription balance: Your balance will be charged each time your Chainlink Functions is fulfilled. If your balance is insufficient, your contract cannot send requests. Automating your Chainlink Functions means they will be regularly triggered, so monitor and fund your subscription account regularly. You can check your subscription details (including the balance in LINK) in the\\\"};duplicate=1\",\"expected\":\"Your subscription balance: Your balance will be charged each time your Chainlink Functions is fulfilled. If your balance is insufficient, your contract cannot send requests. Automating your Chainlink Functions means they will be regularly triggered, so monitor and fund your subscription account regularly. You can check your subscription details (including the balance in LINK) in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your upkeep balance: You can check this balance on the\\\"};duplicate=1\",\"expected\":\"Your upkeep balance: You can check this balance on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and connect to the Sepolia testnet. Your upkeep will be listed under My upkeeps:\\\"};duplicate=1\",\"expected\":\"and connect to the Sepolia testnet. Your upkeep will be listed under My upkeeps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and replace the consumer contract address and the subscription ID with your own values:\\\"};duplicate=1\",\"expected\":\"and replace the consumer contract address and the subscription ID with your own values:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and withdraw the remaining funds. After you cancel the upkeep, there is a 50-block delay before you can withdraw the funds.\\\"};duplicate=1\",\"expected\":\"and withdraw the remaining funds. After you cancel the upkeep, there is a 50-block delay before you can withdraw the funds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and\\\"};duplicate=1\",\"expected\":\"and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"args: During the execution of your function, These arguments are passed to the source code. The args value is [\\\\\\\"1\\\\\\\", \\\\\\\"bitcoin\\\\\\\", \\\\\\\"btc-bitcoin\\\\\\\"]. These arguments are BTC IDs at CoinMarketCap, CoinGecko, and Coinpaprika. You can adapt args to fetch other asset prices.\\\"};duplicate=1\",\"expected\":\"args: During the execution of your function, These arguments are passed to the source code. The args value is [\\\"1\\\", \\\"bitcoin\\\", \\\"btc-bitcoin\\\"]. These arguments are BTC IDs at CoinMarketCap, CoinGecko, and Coinpaprika. You can adapt args to fetch other asset prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"directory.\\\"};duplicate=1\",\"expected\":\"directory.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"donId: Identifier of the DON that will fulfill your requests on the Sepolia testnet.\\\"};duplicate=1\",\"expected\":\"donId: Identifier of the DON that will fulfill your requests on the Sepolia testnet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"expirationTimeMinutes: Expiration time in minutes of the encrypted secrets.\\\"};duplicate=1\",\"expected\":\"expirationTimeMinutes: Expiration time in minutes of the encrypted secrets.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"explorerUrl: Block explorer URL of the Sepolia testnet.\\\"};duplicate=1\",\"expected\":\"explorerUrl: Block explorer URL of the Sepolia testnet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit: Maximum gas that Chainlink Functions can use when transmitting the response to your contract.\\\"};duplicate=1\",\"expected\":\"gasLimit: Maximum gas that Chainlink Functions can use when transmitting the response to your contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gatewayUrls: The secrets endpoint URL to which you will upload the encrypted secrets.\\\"};duplicate=1\",\"expected\":\"gatewayUrls: The secrets endpoint URL to which you will upload the encrypted secrets.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide to register your deployed contract using the\\\"};duplicate=1\",\"expected\":\"guide to register your deployed contract using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your own JavaScript/TypeScript project to encode a request offchain and store it in your contract. The code is self-explanatory and has comments to help you understand all the steps.\\\"};duplicate=1\",\"expected\":\"in your own JavaScript/TypeScript project to encode a request offchain and store it in your contract. The code is self-explanatory and has comments to help you understand all the steps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. For Ethereum Sepolia, the router address is\\\"};duplicate=1\",\"expected\":\"page. For Ethereum Sepolia, the router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"routerAddress: Chainlink Functions router address on the Sepolia testnet.\\\"};duplicate=1\",\"expected\":\"routerAddress: Chainlink Functions router address on the Sepolia testnet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script and shows how to use the\\\"};duplicate=1\",\"expected\":\"script and shows how to use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script that reads your consumer contract's latest received response and decodes it offchain using the Chainlink Function NPM package.\\\"};duplicate=1\",\"expected\":\"script that reads your consumer contract's latest received response and decodes it offchain using the Chainlink Function NPM package.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script to read the latest received response:\\\"};duplicate=1\",\"expected\":\"script to read the latest received response:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script.\\\"};duplicate=1\",\"expected\":\"script.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script.\\\"};duplicate=2\",\"expected\":\"script.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"secrets: The secrets object that will be encrypted.\\\"};duplicate=1\",\"expected\":\"secrets: The secrets object that will be encrypted.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"slotIdNumber: Slot ID at the DON where to upload the encrypted secrets.\\\"};duplicate=1\",\"expected\":\"slotIdNumber: Slot ID at the DON where to upload the encrypted secrets.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"source: The source code must be a string object. That's why we use fs.readFileSync to read source.js and then call toString() to get the content as a string object.\\\"};duplicate=1\",\"expected\":\"source: The source code must be a string object. That's why we use fs.readFileSync to read source.js and then call toString() to get the content as a string object.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more.\\\"};duplicate=1\",\"expected\":\"to learn more.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tutorial.\\\"};duplicate=1\",\"expected\":\"tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"$ node examples/10-automate-functions/readLatest.js secp256k1 unavailable, reverting to browser version Last request ID is 0xf4ae51b028ded52d33376810cd97f02e2b1dff424bb78d45730820fefc0b8060 ✅ Decoded response to uint256: 6688012n\\\"};duplicate=1\",\"expected\":\"$ node examples/10-automate-functions/readLatest.js secp256k1 unavailable, reverting to browser version Last request ID is 0xf4ae51b028ded52d33376810cd97f02e2b1dff424bb78d45730820fefc0b8060 ✅ Decoded response to uint256: 6688012n\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const consumerAddress = \\\\\\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\\\\\" // REPLACE this with your Functions consumer address const subscriptionId = 3 // REPLACE this with your subscription ID\\\"};duplicate=1\",\"expected\":\"const consumerAddress = \\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\" // REPLACE this with your Functions consumer address const subscriptionId = 3 // REPLACE this with your subscription ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const consumerAddress = \\\\\\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\\\\\" // REPLACE this with your Functions consumer address\\\"};duplicate=1\",\"expected\":\"const consumerAddress = \\\"0x5abE77Ba2aE8918bfD96e2e382d5f213f10D39fA\\\" // REPLACE this with your Functions consumer address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"node examples/10-automate-functions/readLatest.js\\\"};duplicate=1\",\"expected\":\"node examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Add your Consumer contract to your Functions subscription\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Add your Consumer contract to your Functions subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Check Result\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Check Result\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Clean up\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Clean up\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Configure Chainlink Automation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Configure Chainlink Automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Configure your Consumer contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Configure your Consumer contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"10-automate-functions\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/10-automate-functions\\\"};duplicate=1\",\"expected\":\"10-automate-functions -> https://github.com/smartcontractkit/smart-contract-examples/tree/main/functions-examples/examples/10-automate-functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation App\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=1\",\"expected\":\"Chainlink Automation App -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation App\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=2\",\"expected\":\"Chainlink Automation App -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation App\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=3\",\"expected\":\"Chainlink Automation App -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions Subscription Manager\\\",\\\"url\\\":\\\"/chainlink-functions/resources/subscriptions\\\"};duplicate=1\",\"expected\":\"Chainlink Functions Subscription Manager -> /chainlink-functions/resources/subscriptions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Functions Subscription Manager\\\",\\\"url\\\":\\\"https://functions.chain.link/\\\"};duplicate=1\",\"expected\":\"Chainlink Functions Subscription Manager -> https://functions.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"url\\\":\\\"#examine-the-code\\\"};duplicate=1\",\"expected\":\"Examine the code -> #examine-the-code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Register a Custom Logic Upkeep\\\",\\\"url\\\":\\\"/chainlink-automation/guides/register-upkeep\\\"};duplicate=1\",\"expected\":\"Register a Custom Logic Upkeep -> /chainlink-automation/guides/register-upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"readLatest\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\\\"};duplicate=1\",\"expected\":\"readLatest -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"readLatest\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\\\"};duplicate=2\",\"expected\":\"readLatest -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/readLatest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"updateRequest.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\\\"};duplicate=1\",\"expected\":\"updateRequest.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"updateRequest.js\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\\\"};duplicate=2\",\"expected\":\"updateRequest.js -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/functions-examples/examples/10-automate-functions/updateRequest.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=1\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=2\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). To do so, follow these steps:\\\"};duplicate=1\",\"expected\":\"). To do so, follow these steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". The upkeep balance pays Chainlink Automation Network to send your requests according to your provided time interval. Chainlink Automation will not trigger your requests if your upkeep balance runs low.\\\"};duplicate=1\",\"expected\":\". The upkeep balance pays Chainlink Automation Network to send your requests according to your provided time interval. Chainlink Automation will not trigger your requests if your upkeep balance runs low.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Use the following upkeep settings:\\\"};duplicate=1\",\"expected\":\". Use the following upkeep settings:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xb83E47C2bC239B3bf370bc41e1459A34b41238D0\\\"};duplicate=1\",\"expected\":\"0xb83E47C2bC239B3bf370bc41e1459A34b41238D0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000\\\"};duplicate=1\",\"expected\":\"1000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add your contract as an approved consumer contract to your Functions subscription using the\\\"};duplicate=1\",\"expected\":\"Add your contract as an approved consumer contract to your Functions subscription using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy your contract address.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Copy your contract address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you finish the guide, cancel your upkeep in the\\\"};duplicate=1\",\"expected\":\"After you finish the guide, cancel your upkeep in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At this stage, your Functions consumer contract is configured to get the median Bitcoin price on every block.\\\"};duplicate=1\",\"expected\":\"At this stage, your Functions consumer contract is configured to get the median Bitcoin price on every block.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check data: Leave this field blank\\\"};duplicate=1\",\"expected\":\"Check data: Leave this field blank\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on your upkeep to fetch de details:\\\"};duplicate=1\",\"expected\":\"Click on your upkeep to fetch de details:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\\\"};duplicate=1\",\"expected\":\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to make sure you are deploying the contract to Ethereum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configure the request details by calling the updateRequest function. This step stores the encoded request (source code, reference to encrypted secrets if any, arguments), gas limit, subscription ID, and job ID in the contract storage (see\\\"};duplicate=1\",\"expected\":\"Configure the request details by calling the updateRequest function. This step stores the encoded request (source code, reference to encrypted secrets if any, arguments), gas limit, subscription ID, and job ID in the contract storage (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit:\\\"};duplicate=1\",\"expected\":\"Gas limit:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go to the\\\"};duplicate=1\",\"expected\":\"Go to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Monitor your balances\\\"};duplicate=1\",\"expected\":\"NOTE: Monitor your balances\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Name: Give your upkeep a name\\\"};duplicate=1\",\"expected\":\"Name: Give your upkeep a name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On a terminal, change directories to the\\\"};duplicate=1\",\"expected\":\"On a terminal, change directories to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On your terminal, run the\\\"};duplicate=1\",\"expected\":\"On your terminal, run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open readLatest.js and replace the consumer contract address with your own values:\\\"};duplicate=1\",\"expected\":\"Open readLatest.js and replace the consumer contract address with your own values:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open\\\"};duplicate=1\",\"expected\":\"Open\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Output Example:\\\"};duplicate=1\",\"expected\":\"Output Example:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the\\\"};duplicate=1\",\"expected\":\"Run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Starting balance (LINK):\\\"};duplicate=1\",\"expected\":\"Starting balance (LINK):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Target contract address: The address of the Chainlink Functions consumer contract that you deployed\\\"};duplicate=1\",\"expected\":\"Target contract address: The address of the Chainlink Functions consumer contract that you deployed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The consumer contract that you deployed is designed to be used with a custom logic automation. Follow the instructions in the\\\"};duplicate=1\",\"expected\":\"The consumer contract that you deployed is designed to be used with a custom logic automation. Follow the instructions in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There are two balances that you must monitor:\\\"};duplicate=1\",\"expected\":\"There are two balances that you must monitor:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Trigger: Custom logic\\\"};duplicate=1\",\"expected\":\"Trigger: Custom logic\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can leave the other settings at their default values for the example in this tutorial.\\\"};duplicate=1\",\"expected\":\"You can leave the other settings at their default values for the example in this tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your subscription balance: Your balance will be charged each time your Chainlink Functions is fulfilled. If your balance is insufficient, your contract cannot send requests. Automating your Chainlink Functions means they will be regularly triggered, so monitor and fund your subscription account regularly. You can check your subscription details (including the balance in LINK) in the\\\"};duplicate=1\",\"expected\":\"Your subscription balance: Your balance will be charged each time your Chainlink Functions is fulfilled. If your balance is insufficient, your contract cannot send requests. Automating your Chainlink Functions means they will be regularly triggered, so monitor and fund your subscription account regularly. You can check your subscription details (including the balance in LINK) in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your upkeep balance: You can check this balance on the\\\"};duplicate=1\",\"expected\":\"Your upkeep balance: You can check this balance on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and connect to the Sepolia testnet. Your upkeep will be listed under My upkeeps:\\\"};duplicate=1\",\"expected\":\"and connect to the Sepolia testnet. Your upkeep will be listed under My upkeeps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and replace the consumer contract address and the subscription ID with your own values:\\\"};duplicate=1\",\"expected\":\"and replace the consumer contract address and the subscription ID with your own values:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"directory.\\\"};duplicate=1\",\"expected\":\"directory.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide to register your deployed contract using the\\\"};duplicate=1\",\"expected\":\"guide to register your deployed contract using the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. For Ethereum Sepolia, the router address is\\\"};duplicate=1\",\"expected\":\"page. For Ethereum Sepolia, the router address is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script to update your Functions consumer contract's request details.\\\"};duplicate=1\",\"expected\":\"script to update your Functions consumer contract's request details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script.\\\"};duplicate=1\",\"expected\":\"script.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to read the latest received response:\\\"};duplicate=1\",\"expected\":\"to read the latest received response:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/automate-functions-custom-logic\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/encode-request-offchain\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/encode-request-offchain\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/encode-request-offchain\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/importing-packages\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/importing-packages\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/importing-packages\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/importing-packages\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=4\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/simple-computation\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=1\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/simple-computation\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=2\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-functions/tutorials/simple-computation\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ChainlinkFunctions\\\",\\\"reason\\\":\\\"Unsupported MDX component ChainlinkFunctions\\\"};duplicate=3\",\"component\":\"ChainlinkFunctions\",\"reason\":\"Unsupported MDX component ChainlinkFunctions\"}", + "{\"path\":\"chainlink-local\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/aggregator-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/aggregator-v2-v3-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/aggregator-v3-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/burn-mint-erc677-helper\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/burn-mint-erc677-helper\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The constructor initializes the token with 18 decimals and an initial supply of 0 tokens.\\\"};duplicate=1\",\"expected\":\"The constructor initializes the token with 18 decimals and an initial supply of 0 tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/burn-mint-erc677-helper\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/burn-mint-erc677-helper\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns an empty array if the chain selector is not supported.\\\"};duplicate=1\",\"expected\":\"Returns an empty array if the chain selector is not supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Register immutable i_register\\\"};duplicate=1\",\"expected\":\"Register immutable i_register\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address constant LINK_FAUCET = 0x4281eCF07378Ee595C564a59048801330f3084eE\\\"};duplicate=1\",\"expected\":\"address constant LINK_FAUCET = 0x4281eCF07378Ee595C564a59048801330f3084eE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor() public\\\"};duplicate=1\",\"expected\":\"constructor() public\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event CCIPSendRequested(Internal.EVM2EVMMessage message)\\\"};duplicate=1\",\"expected\":\"event CCIPSendRequested(Internal.EVM2EVMMessage message)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getNetworkDetails(uint256 chainId) external view returns (Register.NetworkDetails memory)\\\"};duplicate=1\",\"expected\":\"function getNetworkDetails(uint256 chainId) external view returns (Register.NetworkDetails memory)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function requestLinkFromFaucet(address to, uint256 amount) external returns (bool success)\\\"};duplicate=1\",\"expected\":\"function requestLinkFromFaucet(address to, uint256 amount) external returns (bool success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setNetworkDetails(uint256 chainId, Register.NetworkDetails memory networkDetails) external\\\"};duplicate=1\",\"expected\":\"function setNetworkDetails(uint256 chainId, Register.NetworkDetails memory networkDetails) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function switchChainAndRouteMessage(uint256 forkId) external\\\"};duplicate=1\",\"expected\":\"function switchChainAndRouteMessage(uint256 forkId) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 messageId => bool isProcessed) internal s_processedMessages\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 messageId => bool isProcessed) internal s_processedMessages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CCIPSendRequested\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CCIPSendRequested\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Events\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Events\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LINK_FAUCET\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LINK_FAUCET\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getNetworkDetails\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getNetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_register\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_register\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"requestLinkFromFaucet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"requestLinkFromFaucet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_processedMessages\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_processedMessages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setNetworkDetails\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setNetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"switchChainAndRouteMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"switchChainAndRouteMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A struct containing:\\\"};duplicate=1\",\"expected\":\"A struct containing:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A struct containing:\\\"};duplicate=2\",\"expected\":\"A struct containing:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a cross-chain message is requested to be sent through CCIP.\\\"};duplicate=1\",\"expected\":\"Emitted when a cross-chain message is requested to be sent through CCIP.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If network details are not present or some of the values are changed, user can manually add new network details using the setNetworkDetails function.\\\"};duplicate=1\",\"expected\":\"If network details are not present or some of the values are changed, user can manually add new network details using the setNetworkDetails function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the simulator environment by deploying and configuring a persistent Register contract.\\\"};duplicate=1\",\"expected\":\"Initializes the simulator environment by deploying and configuring a persistent Register contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=1\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=2\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=3\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=4\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters:\\\"};duplicate=1\",\"expected\":\"Parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters:\\\"};duplicate=2\",\"expected\":\"Parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters:\\\"};duplicate=3\",\"expected\":\"Parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Prevents duplicate processing by tracking which messages have already been handled.\\\"};duplicate=1\",\"expected\":\"Prevents duplicate processing by tracking which messages have already been handled.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Processes a cross-chain message by switching to the destination fork and executing the message.\\\"};duplicate=1\",\"expected\":\"Processes a cross-chain message by switching to the destination fork and executing the message.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides test LINK tokens to addresses during testing.\\\"};duplicate=1\",\"expected\":\"Provides test LINK tokens to addresses during testing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Records logs and makes the Register contract persistent in the test environment.\\\"};duplicate=1\",\"expected\":\"Records logs and makes the Register contract persistent in the test environment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Register.NetworkDetails\\\"};duplicate=1\",\"expected\":\"Register.NetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Register.NetworkDetails\\\"};duplicate=2\",\"expected\":\"Register.NetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requests LINK tokens from the faucet. The provided amount of tokens are transferred to provided destination address.\\\"};duplicate=1\",\"expected\":\"Requests LINK tokens from the faucet. The provided amount of tokens are transferred to provided destination address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves network-specific CCIP configuration details. Use this function to access default settings or custom configurations for a given network.\\\"};duplicate=1\",\"expected\":\"Retrieves network-specific CCIP configuration details. Use this function to access default settings or custom configurations for a given network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the default values for currently CCIP supported networks. If network is not present or some of the values are changed, user can manually add new network details using the setNetworkDetails function.\\\"};duplicate=1\",\"expected\":\"Returns the default values for currently CCIP supported networks. If network is not present or some of the values are changed, user can manually add new network details using the setNetworkDetails function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true if the transfer of tokens was successful, otherwise false\\\"};duplicate=1\",\"expected\":\"Returns true if the transfer of tokens was successful, otherwise false\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns:\\\"};duplicate=1\",\"expected\":\"Returns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns:\\\"};duplicate=2\",\"expected\":\"Returns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores and manages network configuration details required for CCIP operations.\\\"};duplicate=1\",\"expected\":\"Stores and manages network configuration details required for CCIP operations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to which LINK tokens are to be sent\\\"};duplicate=1\",\"expected\":\"The address to which LINK tokens are to be sent\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of LINK tokens to send\\\"};duplicate=1\",\"expected\":\"The amount of LINK tokens to send\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The blockchain network chain ID. For example 11155111 for Ethereum Sepolia. Not CCIP chain selector.\\\"};duplicate=1\",\"expected\":\"The blockchain network chain ID. For example 11155111 for Ethereum Sepolia. Not CCIP chain selector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To be called after the sending of the cross-chain message (ccipSend). Goes through the list of past logs and looks for the CCIPSendRequested event. Switches to a destination network fork. Routes the sent cross-chain message on the destination network.\\\"};duplicate=1\",\"expected\":\"To be called after the sending of the cross-chain message (ccipSend). Goes through the list of past logs and looks for the CCIPSendRequested event. Switches to a destination network fork. Routes the sent cross-chain message on the destination network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers LINK tokens from the faucet to a specified address for testing purposes.\\\"};duplicate=1\",\"expected\":\"Transfers LINK tokens from the faucet to a specified address for testing purposes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates or adds CCIP configuration details for a specific blockchain network.\\\"};duplicate=1\",\"expected\":\"Updates or adds CCIP configuration details for a specific blockchain network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Works with Foundry only\\\"};duplicate=1\",\"expected\":\"Works with Foundry only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainId\\\"};duplicate=1\",\"expected\":\"chainId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"forkId\\\"};duplicate=1\",\"expected\":\"forkId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkDetails\\\"};duplicate=1\",\"expected\":\"networkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkDetails\\\"};duplicate=2\",\"expected\":\"networkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"success\\\"};duplicate=1\",\"expected\":\"success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• chainSelector - The unique CCIP Chain Selector • routerAddress - The address of the CCIP Router contract • linkAddress - The address of the LINK token • wrappedNativeAddress - The address of the wrapped native token for CCIP fees • ccipBnMAddress - The address of the CCIP BnM token • ccipLnMAddress - The address of the CCIP LnM token |\\\"};duplicate=1\",\"expected\":\"• chainSelector - The unique CCIP Chain Selector • routerAddress - The address of the CCIP Router contract • linkAddress - The address of the LINK token • wrappedNativeAddress - The address of the wrapped native token for CCIP fees • ccipBnMAddress - The address of the CCIP BnM token • ccipLnMAddress - The address of the CCIP LnM token |\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• chainSelector - The unique CCIP Chain Selector • routerAddress - The address of the CCIP Router contract • linkAddress - The address of the LINK token • wrappedNativeAddress - The address of the wrapped native token for CCIP fees • ccipBnMAddress - The address of the CCIP BnM token • ccipLnMAddress - The address of the CCIP LnM token |\\\"};duplicate=2\",\"expected\":\"• chainSelector - The unique CCIP Chain Selector • routerAddress - The address of the CCIP Router contract • linkAddress - The address of the LINK token • wrappedNativeAddress - The address of the wrapped native token for CCIP fees • ccipBnMAddress - The address of the CCIP BnM token • ccipLnMAddress - The address of the CCIP LnM token |\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/ccip-local-simulator-fork-js\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/link-token\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/mock-evm2evm-offramp\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/mock-evm2evm-offramp\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uses pools to release or mint a number of different tokens to a receiver address.\\\"};duplicate=1\",\"expected\":\"Uses pools to release or mint a number of different tokens to a receiver address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/mock-evm2evm-offramp\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/mock-evm2evm-offramp\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/mock-offchain-aggregator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/mock-v3-aggregator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/register\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if the sender's balance is less than the withdrawal amount.\\\"};duplicate=1\",\"expected\":\"Reverts if the sender's balance is less than the withdrawal amount.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/weth9\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.1/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/aggregator-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/aggregator-v2-v3-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/aggregator-v3-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/burn-mint-erc677-helper\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/ccip-local-simulator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/ccip-local-simulator-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/ccip-local-simulator-fork-js\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/link-token\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/mock-offchain-aggregator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/mock-v3-aggregator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/register\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.2/weth9\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a new round is started.\\\"};duplicate=1\",\"expected\":\"Emitted when a new round is started.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when the answer is updated.\\\"};duplicate=1\",\"expected\":\"Emitted when the answer is updated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the answer for a specific round ID.\\\"};duplicate=1\",\"expected\":\"Gets the answer for a specific round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest answer from the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the latest answer from the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest round ID from the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the latest round ID from the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the timestamp for a specific round ID.\\\"};duplicate=1\",\"expected\":\"Gets the timestamp for a specific round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the timestamp of the latest answer from the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the timestamp of the latest answer from the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provides methods to get the latest and historical price data for specific rounds.\\\"};duplicate=1\",\"expected\":\"Provides methods to get the latest and historical price data for specific rounds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v2-v3-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function description() external view returns (string memory)\\\"};duplicate=1\",\"expected\":\"function description() external view returns (string memory)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound )\\\"};duplicate=1\",\"expected\":\"function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound )\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound )\\\"};duplicate=1\",\"expected\":\"function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound )\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function version() external view returns (uint256)\\\"};duplicate=1\",\"expected\":\"function version() external view returns (uint256)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"description\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getRoundData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getRoundData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"latestRoundData\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"latestRoundData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"version\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(unnamed)\\\"};duplicate=1\",\"expected\":\"(unnamed)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(unnamed)\\\"};duplicate=2\",\"expected\":\"(unnamed)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the description of the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the description of the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the description of the aggregator.\\\"};duplicate=2\",\"expected\":\"Gets the description of the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest round data. Reverts with \\\\\\\"No data present\\\\\\\" if no data is available.\\\"};duplicate=1\",\"expected\":\"Gets the latest round data. Reverts with \\\"No data present\\\" if no data is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest round data.\\\"};duplicate=1\",\"expected\":\"Gets the latest round data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the number of decimals used by the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the number of decimals used by the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the round data for a specific round ID. Reverts with \\\\\\\"No data present\\\\\\\" if no data is available for the given round ID.\\\"};duplicate=1\",\"expected\":\"Gets the round data for a specific round ID. Reverts with \\\"No data present\\\" if no data is available for the given round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the round data for a specific round ID.\\\"};duplicate=1\",\"expected\":\"Gets the round data for a specific round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the version of the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the version of the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the version of the aggregator.\\\"};duplicate=2\",\"expected\":\"Gets the version of the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=1\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=2\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=3\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=4\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=5\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The answer for the round\\\"};duplicate=1\",\"expected\":\"The answer for the round\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The description of the aggregator\\\"};duplicate=1\",\"expected\":\"The description of the aggregator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The latest answer\\\"};duplicate=1\",\"expected\":\"The latest answer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The latest round ID\\\"};duplicate=1\",\"expected\":\"The latest round ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals\\\"};duplicate=1\",\"expected\":\"The number of decimals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The round ID in which the answer was computed\\\"};duplicate=1\",\"expected\":\"The round ID in which the answer was computed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The round ID in which the latest answer was computed\\\"};duplicate=1\",\"expected\":\"The round ID in which the latest answer was computed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The round ID to get the data for\\\"};duplicate=1\",\"expected\":\"The round ID to get the data for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The round ID\\\"};duplicate=1\",\"expected\":\"The round ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp when the latest round started\\\"};duplicate=1\",\"expected\":\"The timestamp when the latest round started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp when the latest round was updated\\\"};duplicate=1\",\"expected\":\"The timestamp when the latest round was updated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp when the round started\\\"};duplicate=1\",\"expected\":\"The timestamp when the round started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp when the round was updated\\\"};duplicate=1\",\"expected\":\"The timestamp when the round was updated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_roundId\\\"};duplicate=1\",\"expected\":\"_roundId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"answer\\\"};duplicate=1\",\"expected\":\"answer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"answer\\\"};duplicate=2\",\"expected\":\"answer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"answeredInRound\\\"};duplicate=1\",\"expected\":\"answeredInRound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"answeredInRound\\\"};duplicate=2\",\"expected\":\"answeredInRound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"int256\\\"};duplicate=1\",\"expected\":\"int256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"int256\\\"};duplicate=2\",\"expected\":\"int256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"roundId\\\"};duplicate=1\",\"expected\":\"roundId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"roundId\\\"};duplicate=2\",\"expected\":\"roundId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"startedAt\\\"};duplicate=1\",\"expected\":\"startedAt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"startedAt\\\"};duplicate=2\",\"expected\":\"startedAt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint80\\\"};duplicate=1\",\"expected\":\"uint80\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint80\\\"};duplicate=2\",\"expected\":\"uint80\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint80\\\"};duplicate=3\",\"expected\":\"uint80\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint80\\\"};duplicate=4\",\"expected\":\"uint80\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint80\\\"};duplicate=5\",\"expected\":\"uint80\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint8\\\"};duplicate=1\",\"expected\":\"uint8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"updatedAt\\\"};duplicate=1\",\"expected\":\"updatedAt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"updatedAt\\\"};duplicate=2\",\"expected\":\"updatedAt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/aggregator-v3-interface\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/burn-mint-erc677-helper\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"BurnMintERC677Helper internal immutable i_ccipBnM\\\"};duplicate=1\",\"expected\":\"BurnMintERC677Helper internal immutable i_ccipBnM\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"BurnMintERC677Helper internal immutable i_ccipLnM\\\"};duplicate=1\",\"expected\":\"BurnMintERC677Helper internal immutable i_ccipLnM\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"LinkToken internal immutable i_linkToken\\\"};duplicate=1\",\"expected\":\"LinkToken internal immutable i_linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"MockCCIPRouter internal immutable i_mockRouter\\\"};duplicate=1\",\"expected\":\"MockCCIPRouter internal immutable i_mockRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"WETH9 internal immutable i_wrappedNative\\\"};duplicate=1\",\"expected\":\"WETH9 internal immutable i_wrappedNative\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address[] internal s_supportedTokens\\\"};duplicate=1\",\"expected\":\"address[] internal s_supportedTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor()\\\"};duplicate=1\",\"expected\":\"constructor()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CCIPLocalSimulator__MsgSenderIsNotTokenOwner()\\\"};duplicate=1\",\"expected\":\"error CCIPLocalSimulator__MsgSenderIsNotTokenOwner()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"error CCIPLocalSimulator__RequiredRoleNotFound(address account, bytes32 role, address token)\\\"};duplicate=1\",\"expected\":\"error CCIPLocalSimulator__RequiredRoleNotFound(address account, bytes32 role, address token)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function configuration() public view returns (uint64 chainSelector_, IRouterClient sourceRouter_, IRouterClient destinationRouter_, WETH9 wrappedNative_, LinkToken linkToken_, BurnMintERC677Helper ccipBnM_, BurnMintERC677Helper ccipLnM_)\\\"};duplicate=1\",\"expected\":\"function configuration() public view returns (uint64 chainSelector_, IRouterClient sourceRouter_, IRouterClient destinationRouter_, WETH9 wrappedNative_, LinkToken linkToken_, BurnMintERC677Helper ccipBnM_, BurnMintERC677Helper ccipLnM_)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getSupportedTokens(uint64 chainSelector) external view returns (address[] memory tokens)\\\"};duplicate=1\",\"expected\":\"function getSupportedTokens(uint64 chainSelector) external view returns (address[] memory tokens)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function isChainSupported(uint64 chainSelector) public pure returns (bool supported)\\\"};duplicate=1\",\"expected\":\"function isChainSupported(uint64 chainSelector) public pure returns (bool supported)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function requestLinkFromFaucet(address to, uint256 amount) external returns (bool success)\\\"};duplicate=1\",\"expected\":\"function requestLinkFromFaucet(address to, uint256 amount) external returns (bool success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportNewTokenViaAccessControlDefaultAdmin(address tokenAddress) external\\\"};duplicate=1\",\"expected\":\"function supportNewTokenViaAccessControlDefaultAdmin(address tokenAddress) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportNewTokenViaGetCCIPAdmin(address tokenAddress) external\\\"};duplicate=1\",\"expected\":\"function supportNewTokenViaGetCCIPAdmin(address tokenAddress) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function supportNewTokenViaOwner(address tokenAddress) external\\\"};duplicate=1\",\"expected\":\"function supportNewTokenViaOwner(address tokenAddress) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"uint64 constant CHAIN_SELECTOR = 16015286601757825753\\\"};duplicate=1\",\"expected\":\"uint64 constant CHAIN_SELECTOR = 16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CCIPLocalSimulator__MsgSenderIsNotTokenOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CCIPLocalSimulator__MsgSenderIsNotTokenOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CCIPLocalSimulator__RequiredRoleNotFound\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CCIPLocalSimulator__RequiredRoleNotFound\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CHAIN_SELECTOR\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CHAIN_SELECTOR\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Errors\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=5\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=3\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=4\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"configuration\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getSupportedTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getSupportedTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_ccipBnM\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_ccipBnM\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_ccipLnM\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_ccipLnM\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_linkToken\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_linkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_mockRouter\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_mockRouter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_wrappedNative\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_wrappedNative\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"isChainSupported\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"isChainSupported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"requestLinkFromFaucet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"requestLinkFromFaucet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_supportedTokens\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_supportedTokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportNewTokenViaAccessControlDefaultAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportNewTokenViaAccessControlDefaultAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportNewTokenViaGetCCIPAdmin\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportNewTokenViaGetCCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"supportNewTokenViaOwner\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"supportNewTokenViaOwner\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new token to supported tokens list via AccessControl's DEFAULT_ADMIN_ROLE.\\\"};duplicate=1\",\"expected\":\"Adds a new token to supported tokens list via AccessControl's DEFAULT_ADMIN_ROLE.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new token to supported tokens list via CCIP admin role.\\\"};duplicate=1\",\"expected\":\"Adds a new token to supported tokens list via CCIP admin role.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adds a new token to supported tokens list via token owner.\\\"};duplicate=1\",\"expected\":\"Adds a new token to supported tokens list via token owner.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows user to support any new token, besides CCIP BnM and CCIP LnM, for cross-chain transfers. The caller must have the DEFAULT_ADMIN_ROLE as defined by the contract itself.\\\"};duplicate=1\",\"expected\":\"Allows user to support any new token, besides CCIP BnM and CCIP LnM, for cross-chain transfers. The caller must have the DEFAULT_ADMIN_ROLE as defined by the contract itself.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows user to support any new token, besides CCIP BnM and CCIP LnM, for cross-chain transfers.\\\"};duplicate=1\",\"expected\":\"Allows user to support any new token, besides CCIP BnM and CCIP LnM, for cross-chain transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows user to support any new token, besides CCIP BnM and CCIP LnM, for cross-chain transfers.\\\"};duplicate=2\",\"expected\":\"Allows user to support any new token, besides CCIP BnM and CCIP LnM, for cross-chain transfers.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BurnMintERC677Helper\\\"};duplicate=1\",\"expected\":\"BurnMintERC677Helper\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BurnMintERC677Helper\\\"};duplicate=2\",\"expected\":\"BurnMintERC677Helper\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=2\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks if a given chain selector is supported.\\\"};duplicate=1\",\"expected\":\"Checks if a given chain selector is supported.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Checks whether the provided chainSelector is supported by the simulator.\\\"};duplicate=1\",\"expected\":\"Checks whether the provided chainSelector is supported by the simulator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Constructor to initialize the contract and pre-deployed token instances\\\"};duplicate=1\",\"expected\":\"Constructor to initialize the contract and pre-deployed token instances\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets a list of token addresses that are supported for cross-chain transfers by the simulator.\\\"};duplicate=1\",\"expected\":\"Gets a list of token addresses that are supported for cross-chain transfers by the simulator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the list of supported token addresses for a given chain selector.\\\"};duplicate=1\",\"expected\":\"Gets the list of supported token addresses for a given chain selector.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IRouterClient\\\"};duplicate=1\",\"expected\":\"IRouterClient\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IRouterClient\\\"};duplicate=2\",\"expected\":\"IRouterClient\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with pre-deployed token instances.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with pre-deployed token instances.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LinkToken\\\"};duplicate=1\",\"expected\":\"LinkToken\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=1\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=2\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=3\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=4\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=5\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=6\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=7\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Possible Reverts\\\"};duplicate=1\",\"expected\":\"Possible Reverts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Possible Reverts\\\"};duplicate=2\",\"expected\":\"Possible Reverts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requests LINK tokens from the faucet. The provided amount of tokens are transferred to provided destination address.\\\"};duplicate=1\",\"expected\":\"Requests LINK tokens from the faucet. The provided amount of tokens are transferred to provided destination address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns a list of token addresses that are supported for cross-chain transfers\\\"};duplicate=1\",\"expected\":\"Returns a list of token addresses that are supported for cross-chain transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns configuration details for pre-deployed contracts and services needed for local CCIP simulations.\\\"};duplicate=1\",\"expected\":\"Returns configuration details for pre-deployed contracts and services needed for local CCIP simulations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the configuration details for pre-deployed contracts and services needed for local CCIP simulations.\\\"};duplicate=1\",\"expected\":\"Returns the configuration details for pre-deployed contracts and services needed for local CCIP simulations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true if chainSelector is supported by the simulator\\\"};duplicate=1\",\"expected\":\"Returns true if chainSelector is supported by the simulator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns true if the transfer of tokens was successful\\\"};duplicate=1\",\"expected\":\"Returns true if the transfer of tokens was successful\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if the caller is not the admin of the token using OZ's AccessControl DEFAULT_ADMIN_ROLE\\\"};duplicate=1\",\"expected\":\"Reverts if the caller is not the admin of the token using OZ's AccessControl DEFAULT_ADMIN_ROLE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if the caller is not the token CCIPAdmin\\\"};duplicate=1\",\"expected\":\"Reverts if the caller is not the token CCIPAdmin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reverts if token does not implement getCCIPAdmin() function\\\"};duplicate=1\",\"expected\":\"Reverts if token does not implement getCCIPAdmin() function\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The BurnMintERC677Helper instance for CCIP-BnM token\\\"};duplicate=1\",\"expected\":\"The BurnMintERC677Helper instance for CCIP-BnM token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The BurnMintERC677Helper instance for CCIP-LnM token\\\"};duplicate=1\",\"expected\":\"The BurnMintERC677Helper instance for CCIP-LnM token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK token instance\\\"};duplicate=1\",\"expected\":\"The LINK token instance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK token\\\"};duplicate=1\",\"expected\":\"The LINK token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the token to add to the list of supported tokens\\\"};duplicate=1\",\"expected\":\"The address of the token to add to the list of supported tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the token to add to the list of supported tokens\\\"};duplicate=2\",\"expected\":\"The address of the token to add to the list of supported tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to which LINK tokens are to be sent\\\"};duplicate=1\",\"expected\":\"The address to which LINK tokens are to be sent\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of LINK tokens to send\\\"};duplicate=1\",\"expected\":\"The amount of LINK tokens to send\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ccipBnM token\\\"};duplicate=1\",\"expected\":\"The ccipBnM token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ccipLnM token\\\"};duplicate=1\",\"expected\":\"The ccipLnM token\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The destination chain Router contract\\\"};duplicate=1\",\"expected\":\"The destination chain Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The list of supported token addresses\\\"};duplicate=1\",\"expected\":\"The list of supported token addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The mock CCIP router instance\\\"};duplicate=1\",\"expected\":\"The mock CCIP router instance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The source chain Router contract\\\"};duplicate=1\",\"expected\":\"The source chain Router contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique CCIP Chain Selector constant\\\"};duplicate=1\",\"expected\":\"The unique CCIP Chain Selector constant\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique CCIP Chain Selector\\\"};duplicate=1\",\"expected\":\"The unique CCIP Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique CCIP Chain Selector\\\"};duplicate=2\",\"expected\":\"The unique CCIP Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique CCIP Chain Selector\\\"};duplicate=3\",\"expected\":\"The unique CCIP Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The wrapped native token instance\\\"};duplicate=1\",\"expected\":\"The wrapped native token instance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The wrapped native token which can be used for CCIP fees\\\"};duplicate=1\",\"expected\":\"The wrapped native token which can be used for CCIP fees\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This contract includes methods to manage supported tokens and configurations for local simulations.\\\"};duplicate=1\",\"expected\":\"This contract includes methods to manage supported tokens and configurations for local simulations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers LINK tokens from the faucet to a specified address.\\\"};duplicate=1\",\"expected\":\"Transfers LINK tokens from the faucet to a specified address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WETH9\\\"};duplicate=1\",\"expected\":\"WETH9\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address[]\\\"};duplicate=1\",\"expected\":\"address[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=2\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=3\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=1\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bool\\\"};duplicate=2\",\"expected\":\"bool\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ccipBnM_\\\"};duplicate=1\",\"expected\":\"ccipBnM_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ccipLnM_\\\"};duplicate=1\",\"expected\":\"ccipLnM_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=1\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector\\\"};duplicate=2\",\"expected\":\"chainSelector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainSelector_\\\"};duplicate=1\",\"expected\":\"chainSelector_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"destinationRouter_\\\"};duplicate=1\",\"expected\":\"destinationRouter_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"linkToken_\\\"};duplicate=1\",\"expected\":\"linkToken_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sourceRouter_\\\"};duplicate=1\",\"expected\":\"sourceRouter_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"success\\\"};duplicate=1\",\"expected\":\"success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"supported\\\"};duplicate=1\",\"expected\":\"supported\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=1\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=2\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenAddress\\\"};duplicate=3\",\"expected\":\"tokenAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokens\\\"};duplicate=1\",\"expected\":\"tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=1\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=2\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint64\\\"};duplicate=3\",\"expected\":\"uint64\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"wrappedNative_\\\"};duplicate=1\",\"expected\":\"wrappedNative_\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=2\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Register immutable i_register\\\"};duplicate=1\",\"expected\":\"Register immutable i_register\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"address constant LINK_FAUCET = 0x4281eCF07378Ee595C564a59048801330f3084eE\\\"};duplicate=1\",\"expected\":\"address constant LINK_FAUCET = 0x4281eCF07378Ee595C564a59048801330f3084eE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor()\\\"};duplicate=1\",\"expected\":\"constructor()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"event CCIPSendRequested(Internal.EVM2EVMMessage message)\\\"};duplicate=1\",\"expected\":\"event CCIPSendRequested(Internal.EVM2EVMMessage message)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function executeSingleMessage( Internal.EVM2EVMMessage memory message, bytes[] memory offchainTokenData, uint32[] memory tokenGasOverrides ) external\\\"};duplicate=1\",\"expected\":\"function executeSingleMessage( Internal.EVM2EVMMessage memory message, bytes[] memory offchainTokenData, uint32[] memory tokenGasOverrides ) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function getNetworkDetails(uint256 chainId) external view returns (Register.NetworkDetails memory)\\\"};duplicate=1\",\"expected\":\"function getNetworkDetails(uint256 chainId) external view returns (Register.NetworkDetails memory)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function requestLinkFromFaucet(address to, uint256 amount) external returns (bool success)\\\"};duplicate=1\",\"expected\":\"function requestLinkFromFaucet(address to, uint256 amount) external returns (bool success)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function setNetworkDetails(uint256 chainId, Register.NetworkDetails memory networkDetails) external\\\"};duplicate=1\",\"expected\":\"function setNetworkDetails(uint256 chainId, Register.NetworkDetails memory networkDetails) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function switchChainAndRouteMessage(uint256 forkId) external\\\"};duplicate=1\",\"expected\":\"function switchChainAndRouteMessage(uint256 forkId) external\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mapping(bytes32 messageId => bool isProcessed) internal s_processedMessages\\\"};duplicate=1\",\"expected\":\"mapping(bytes32 messageId => bool isProcessed) internal s_processedMessages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CCIPSendRequested\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"CCIPSendRequested\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Events\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Events\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"IEVM2EVMOffRampFork\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"IEVM2EVMOffRampFork\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LINK_FAUCET\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LINK_FAUCET\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=2\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=3\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Parameters\\\",\\\"depth\\\":4};duplicate=4\",\"expected\":\"Parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Returns\\\",\\\"depth\\\":4};duplicate=2\",\"expected\":\"Returns\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Variables\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"executeSingleMessage\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"executeSingleMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getNetworkDetails\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getNetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"i_register\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"i_register\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"requestLinkFromFaucet\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"requestLinkFromFaucet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"s_processedMessages\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"s_processedMessages\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"setNetworkDetails\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"setNetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"switchChainAndRouteMessage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"switchChainAndRouteMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(unnamed)\\\"};duplicate=1\",\"expected\":\"(unnamed)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional off-chain token data\\\"};duplicate=1\",\"expected\":\"Additional off-chain token data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Array of off-ramp configurations\\\"};duplicate=1\",\"expected\":\"Array of off-ramp configurations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Creating a new Register instance\\\"};duplicate=1\",\"expected\":\"Creating a new Register instance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM2EVMMessage\\\"};duplicate=1\",\"expected\":\"EVM2EVMMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EVM2EVMMessage\\\"};duplicate=2\",\"expected\":\"EVM2EVMMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when a CCIP send request is made.\\\"};duplicate=1\",\"expected\":\"Emitted when a CCIP send request is made.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Executes a single CCIP message on the off-ramp contract.\\\"};duplicate=1\",\"expected\":\"Executes a single CCIP message on the off-ramp contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit overrides for token transfers\\\"};duplicate=1\",\"expected\":\"Gas limit overrides for token transfers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the list of off-ramp configurations from the router contract.\\\"};duplicate=1\",\"expected\":\"Gets the list of off-ramp configurations from the router contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract and sets up logging and persistence.\\\"};duplicate=1\",\"expected\":\"Initializes the contract and sets up logging and persistence.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract by:\\\"};duplicate=1\",\"expected\":\"Initializes the contract by:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Interface for executing CCIP messages on an off-ramp contract in a forked environment.\\\"};duplicate=1\",\"expected\":\"Interface for executing CCIP messages on an off-ramp contract in a forked environment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal mapping to track which messages have been processed to prevent duplicate processing.\\\"};duplicate=1\",\"expected\":\"Internal mapping to track which messages have been processed to prevent duplicate processing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Making the Register contract address persistent\\\"};duplicate=1\",\"expected\":\"Making the Register contract address persistent\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NetworkDetails\\\"};duplicate=1\",\"expected\":\"NetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NetworkDetails\\\"};duplicate=2\",\"expected\":\"NetworkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OffRamp[]\\\"};duplicate=1\",\"expected\":\"OffRamp[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=1\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=2\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=3\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=4\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter\\\"};duplicate=5\",\"expected\":\"Parameter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requests LINK tokens from the faucet for a specified address.\\\"};duplicate=1\",\"expected\":\"Requests LINK tokens from the faucet for a specified address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the default values for currently CCIP supported networks. If a network is not present or values have changed, new network details can be added using setNetworkDetails.\\\"};duplicate=1\",\"expected\":\"Returns the default values for currently CCIP supported networks. If a network is not present or values have changed, new network details can be added using setNetworkDetails.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the network configuration details for a specified chain ID.\\\"};duplicate=1\",\"expected\":\"Returns the network configuration details for a specified chain ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Routes a cross-chain message on the destination network after switching to the specified fork.\\\"};duplicate=1\",\"expected\":\"Routes a cross-chain message on the destination network after switching to the specified fork.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Routes the sent message on the destination network\\\"};duplicate=1\",\"expected\":\"Routes the sent message on the destination network\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Searches past logs for CCIPSendRequested events\\\"};duplicate=1\",\"expected\":\"Searches past logs for CCIPSendRequested events\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Setting up log recording\\\"};duplicate=1\",\"expected\":\"Setting up log recording\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Switches to the destination network fork\\\"};duplicate=1\",\"expected\":\"Switches to the destination network fork\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CCIP message to be executed\\\"};duplicate=1\",\"expected\":\"The CCIP message to be executed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The EVM2EVM message that was sent\\\"};duplicate=1\",\"expected\":\"The EVM2EVM message that was sent\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ID of the destination network fork (returned by createFork() or createSelectFork())\\\"};duplicate=1\",\"expected\":\"The ID of the destination network fork (returned by createFork() or createSelectFork())\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the LINK token faucet contract.\\\"};duplicate=1\",\"expected\":\"The address of the LINK token faucet contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address to receive the LINK tokens\\\"};duplicate=1\",\"expected\":\"The address to receive the LINK tokens\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of LINK tokens to transfer\\\"};duplicate=1\",\"expected\":\"The amount of LINK tokens to transfer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The blockchain network chain ID (e.g., 11155111 for Ethereum Sepolia)\\\"};duplicate=1\",\"expected\":\"The blockchain network chain ID (e.g., 11155111 for Ethereum Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The blockchain network chain ID (e.g., 11155111 for Ethereum Sepolia)\\\"};duplicate=2\",\"expected\":\"The blockchain network chain ID (e.g., 11155111 for Ethereum Sepolia)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The immutable Register contract instance used to store network configuration details.\\\"};duplicate=1\",\"expected\":\"The immutable Register contract instance used to store network configuration details.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The network configuration details for the specified chain\\\"};duplicate=1\",\"expected\":\"The network configuration details for the specified chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The network configuration details to be stored\\\"};duplicate=1\",\"expected\":\"The network configuration details to be stored\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To be called after sending a cross-chain message (ccipSend). The function:\\\"};duplicate=1\",\"expected\":\"To be called after sending a cross-chain message (ccipSend). The function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers the specified amount of LINK tokens from the faucet to the provided destination address.\\\"};duplicate=1\",\"expected\":\"Transfers the specified amount of LINK tokens from the faucet to the provided destination address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates or adds new network configuration details for a specified chain ID.\\\"};duplicate=1\",\"expected\":\"Updates or adds new network configuration details for a specified chain ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to add or update network details when they are not present or have changed from default values.\\\"};duplicate=1\",\"expected\":\"Used to add or update network details when they are not present or have changed from default values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount\\\"};duplicate=1\",\"expected\":\"amount\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bytes[]\\\"};duplicate=1\",\"expected\":\"bytes[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainId\\\"};duplicate=1\",\"expected\":\"chainId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"chainId\\\"};duplicate=2\",\"expected\":\"chainId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"forkId\\\"};duplicate=1\",\"expected\":\"forkId\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=1\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=2\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"networkDetails\\\"};duplicate=1\",\"expected\":\"networkDetails\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"offchainTokenData\\\"};duplicate=1\",\"expected\":\"offchainTokenData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenGasOverrides\\\"};duplicate=1\",\"expected\":\"tokenGasOverrides\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=1\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=2\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=3\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint256\\\"};duplicate=4\",\"expected\":\"uint256\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uint32[]\\\"};duplicate=1\",\"expected\":\"uint32[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/ccip-local-simulator-fork-js\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/link-token\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Constructor to initialize the MockOffchainAggregator contract with initial parameters.\\\"};duplicate=1\",\"expected\":\"Constructor to initialize the MockOffchainAggregator contract with initial parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest round data.\\\"};duplicate=1\",\"expected\":\"Gets the latest round data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the round data for a specific round ID.\\\"};duplicate=1\",\"expected\":\"Gets the round data for a specific round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mapping to get the answer for a specific round ID.\\\"};duplicate=1\",\"expected\":\"Mapping to get the answer for a specific round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mapping to get the timestamp for a specific round ID.\\\"};duplicate=1\",\"expected\":\"Mapping to get the timestamp for a specific round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Simulates the behavior of an offchain aggregator and allows for updating answers and round data.\\\"};duplicate=1\",\"expected\":\"Simulates the behavior of an offchain aggregator and allows for updating answers and round data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The latest answer reported by the aggregator.\\\"};duplicate=1\",\"expected\":\"The latest answer reported by the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The latest round ID.\\\"};duplicate=1\",\"expected\":\"The latest round ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maximum answer the aggregator is allowed to report.\\\"};duplicate=1\",\"expected\":\"The maximum answer the aggregator is allowed to report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The minimum answer the aggregator is allowed to report.\\\"};duplicate=1\",\"expected\":\"The minimum answer the aggregator is allowed to report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used by the aggregator.\\\"};duplicate=1\",\"expected\":\"The number of decimals used by the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The timestamp of the latest answer.\\\"};duplicate=1\",\"expected\":\"The timestamp of the latest answer.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the answer in the mock aggregator.\\\"};duplicate=1\",\"expected\":\"Updates the answer in the mock aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the minimum and maximum answers the aggregator can report.\\\"};duplicate=1\",\"expected\":\"Updates the minimum and maximum answers the aggregator can report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the round data in the mock aggregator.\\\"};duplicate=1\",\"expected\":\"Updates the round data in the mock aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-offchain-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Confirms the proposed aggregator.\\\"};duplicate=1\",\"expected\":\"Confirms the proposed aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Constructor to initialize the MockV3Aggregator contract with initial parameters.\\\"};duplicate=1\",\"expected\":\"Constructor to initialize the MockV3Aggregator contract with initial parameters.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the answer for a specific round ID from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the answer for a specific round ID from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the description of the aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the description of the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest answer from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the latest answer from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest round ID from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the latest round ID from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the latest round data from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the latest round data from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the number of decimals from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the number of decimals from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the round data for a specific round ID from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the round data for a specific round ID from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the timestamp for a specific round ID from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the timestamp for a specific round ID from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gets the timestamp of the latest answer from the underlying aggregator.\\\"};duplicate=1\",\"expected\":\"Gets the timestamp of the latest answer from the underlying aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=16\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=17\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Proposes a new aggregator.\\\"};duplicate=1\",\"expected\":\"Proposes a new aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the current aggregator.\\\"};duplicate=1\",\"expected\":\"The address of the current aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the proposed aggregator.\\\"};duplicate=1\",\"expected\":\"The address of the proposed aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The version of the aggregator.\\\"};duplicate=1\",\"expected\":\"The version of the aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the answer in the underlying mock aggregator.\\\"};duplicate=1\",\"expected\":\"Updates the answer in the underlying mock aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates the round data in the underlying mock aggregator.\\\"};duplicate=1\",\"expected\":\"Updates the round data in the underlying mock aggregator.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/mock-v3-aggregator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"constructor()\\\"};duplicate=1\",\"expected\":\"constructor()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"constructor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"constructor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Initializes the contract with predefined network details for various supported chains.\\\"};duplicate=1\",\"expected\":\"Initializes the contract with predefined network details for various supported chains.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Internal mapping that stores network details for each supported chain ID.\\\"};duplicate=1\",\"expected\":\"Internal mapping that stores network details for each supported chain ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the complete network configuration for the specified chain ID.\\\"};duplicate=1\",\"expected\":\"Returns the complete network configuration for the specified chain ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Updates or adds new network configuration details for the specified chain ID.\\\"};duplicate=1\",\"expected\":\"Updates or adds new network configuration details for the specified chain ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/register\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows users to deposit ETH and receive WETH tokens.\\\"};duplicate=1\",\"expected\":\"Allows users to deposit ETH and receive WETH tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allows users to withdraw ETH by burning WETH tokens.\\\"};duplicate=1\",\"expected\":\"Allows users to withdraw ETH by burning WETH tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when ETH is wrapped to WETH.\\\"};duplicate=1\",\"expected\":\"Emitted when ETH is wrapped to WETH.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when WETH is unwrapped to ETH.\\\"};duplicate=1\",\"expected\":\"Emitted when WETH is unwrapped to ETH.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when an approval is set.\\\"};duplicate=1\",\"expected\":\"Emitted when an approval is set.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Emitted when tokens are transferred.\\\"};duplicate=1\",\"expected\":\"Emitted when tokens are transferred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mapping of addresses to their WETH balances.\\\"};duplicate=1\",\"expected\":\"Mapping of addresses to their WETH balances.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mapping of owner addresses to spender addresses to approved amounts.\\\"};duplicate=1\",\"expected\":\"Mapping of owner addresses to spender addresses to approved amounts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=10\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=11\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=12\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=13\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=14\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=15\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=3\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=4\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=5\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=6\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=7\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=8\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=9\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns the total amount of ETH held by this contract.\\\"};duplicate=1\",\"expected\":\"Returns the total amount of ETH held by this contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sets the allowance that a spender has to access the caller's tokens.\\\"};duplicate=1\",\"expected\":\"Sets the allowance that a spender has to access the caller's tokens.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The name of the token.\\\"};duplicate=1\",\"expected\":\"The name of the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of decimals used for WETH token amounts.\\\"};duplicate=1\",\"expected\":\"The number of decimals used for WETH token amounts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The symbol of the token.\\\"};duplicate=1\",\"expected\":\"The symbol of the token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens between addresses, respecting allowances.\\\"};duplicate=1\",\"expected\":\"Transfers tokens between addresses, respecting allowances.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transfers tokens from the caller to another address.\\\"};duplicate=1\",\"expected\":\"Transfers tokens from the caller to another address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/api-reference/v0.2.3/weth9\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-local/build/ccip/foundry\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/foundry/cct-burn-and-mint-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/foundry/cct-lock-and-release-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/foundry/forking-mainnets\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/foundry/local-simulator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/foundry/local-simulator-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/hardhat\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/hardhat/local-simulator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/hardhat/local-simulator-fork\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/remix\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000000000000\\\"};duplicate=1\",\"expected\":\"1000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"3000000\\\"};duplicate=1\",\"expected\":\"3000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hello!\\\"};duplicate=1\",\"expected\":\"Hello!\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Remix IDE fails to estimate the gas properly for the sendMessage function. To work around this, you need to set the gas limit manually to\\\"};duplicate=1\",\"expected\":\"Remix IDE fails to estimate the gas properly for the sendMessage function. To work around this, you need to set the gas limit manually to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"amount: The amount of LINK tokens to transfer. For instance:\\\"};duplicate=1\",\"expected\":\"amount: The amount of LINK tokens to transfer. For instance:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"text: The text to send. For instance\\\"};duplicate=1\",\"expected\":\"text: The text to send. For instance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-local/build/ccip/remix/local-simulator\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Common\\\"};duplicate=1\",\"component\":\"Common\",\"reason\":\"Unsupported MDX component Common\"}", + "{\"path\":\"chainlink-nodes/contracts/operator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"chainlink-nodes/contracts/operator\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=2\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/building-external-initiators\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink external initiator\\\"};duplicate=1\",\"expected\":\"Chainlink external initiator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/building-external-initiators\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockchain\\\"};duplicate=1\",\"expected\":\"blockchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/building-external-initiators\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/building-external-initiators\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/building-external-initiators\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"DELETE /\\\"};duplicate=1\",\"expected\":\"DELETE /\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"DELETE http:///v2/external_initiators/\\\"};duplicate=1\",\"expected\":\"DELETE http:///v2/external_initiators/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"EI_DATABASEURL=postgresql://$USERNAME:$PASSWORD@$SERVER:$PORT/$DATABASE EI_CHAINLINKURL=http://localhost:6688 EI_IC_ACCESSKEY= EI_IC_SECRET= EI_CI_ACCESSKEY= EI_CI_SECRET=\\\"};duplicate=1\",\"expected\":\"EI_DATABASEURL=postgresql://$USERNAME:$PASSWORD@$SERVER:$PORT/$DATABASE EI_CHAINLINKURL=http://localhost:6688 EI_IC_ACCESSKEY= EI_IC_SECRET= EI_CI_ACCESSKEY= EI_CI_SECRET=\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"GET http:///v2/external_initiators?size=100&page=1\\\"};duplicate=1\",\"expected\":\"GET http:///v2/external_initiators?size=100&page=1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"POST -d {\\\\\\\"jobId\\\\\\\": , \\\\\\\"type\\\\\\\": , \\\\\\\"params\\\\\\\": }\\\"};duplicate=1\",\"expected\":\"POST -d {\\\"jobId\\\": , \\\"type\\\": , \\\"params\\\": }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"POST http:///v2/external_initiators -d \\\"};duplicate=1\",\"expected\":\"POST http:///v2/external_initiators -d \",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"chainlink initiators create \\\"};duplicate=1\",\"expected\":\"chainlink initiators create \",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"chainlink initiators destroy \\\"};duplicate=1\",\"expected\":\"chainlink initiators destroy \",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"chainlink initiators list\\\"};duplicate=1\",\"expected\":\"chainlink initiators list\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"{ \\\\\\\"name\\\\\\\": , \\\\\\\"url\\\\\\\": }\\\"};duplicate=1\",\"expected\":\"{ \\\"name\\\": , \\\"url\\\": }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"║ ei_name ║ http://localhost:8080/jobs ║ a4846e85727e46b48889c6e28b555696 ║ dnNfNhiiCTm1o6l+hGJVfCtRSSuDfZbj1VO4BkZG3E+b96lminE7yQHj2KALMAIk ║ iWt64+Q9benOf5JuGwJtQnbByN9rtHwSlElOVpHVTvGTP5Zb2Guwzy6w3wflwyYt ║ 56m38YkeCymYU0kr4Yg6x3e98CyAu+37y2+kMO2AL9lRMjA3hRA1ejFdG9UfFCAE\\\"};duplicate=1\",\"expected\":\"║ ei_name ║ http://localhost:8080/jobs ║ a4846e85727e46b48889c6e28b555696 ║ dnNfNhiiCTm1o6l+hGJVfCtRSSuDfZbj1VO4BkZG3E+b96lminE7yQHj2KALMAIk ║ iWt64+Q9benOf5JuGwJtQnbByN9rtHwSlElOVpHVTvGTP5Zb2Guwzy6w3wflwyYt ║ 56m38YkeCymYU0kr4Yg6x3e98CyAu+37y2+kMO2AL9lRMjA3hRA1ejFdG9UfFCAE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Creating an external initiator\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Creating an external initiator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Deleting an external initiator\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Deleting an external initiator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Listing external initiators\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Listing external initiators\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink nodes CLI\\\",\\\"url\\\":\\\"/chainlink-nodes/resources/miscellaneous/#execute-commands-running-docker\\\"};duplicate=1\",\"expected\":\"Chainlink nodes CLI -> /chainlink-nodes/resources/miscellaneous/#execute-commands-running-docker\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"configuration variable\\\",\\\"url\\\":\\\"/chainlink-nodes/v1/configuration\\\"};duplicate=1\",\"expected\":\"configuration variable -> /chainlink-nodes/v1/configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"webhook jobs\\\",\\\"url\\\":\\\"/chainlink-nodes/oracle-jobs/job-types/webhook\\\"};duplicate=1\",\"expected\":\"webhook jobs -> /chainlink-nodes/oracle-jobs/job-types/webhook\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Additional external initiator reference\\\"};duplicate=1\",\"expected\":\"Additional external initiator reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"At the time of writing, the output should be in order. For example, in from the output above, EI_IC_ACCESSKEY=a4846e85727e46b48889c6e28b555696 and so on.\\\"};duplicate=1\",\"expected\":\"At the time of writing, the output should be in order. For example, in from the output above, EI_IC_ACCESSKEY=a4846e85727e46b48889c6e28b555696 and so on.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Be sure to save these values, since the secrets cannot be shown again.\\\"};duplicate=1\",\"expected\":\"Be sure to save these values, since the secrets cannot be shown again.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Conflux EI demo\\\"};duplicate=1\",\"expected\":\"Conflux EI demo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Conflux External initiator\\\"};duplicate=1\",\"expected\":\"Conflux External initiator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enter the\\\"};duplicate=1\",\"expected\":\"Enter the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"External initiators are disabled on nodes by default. Set the FEATURE_EXTERNAL_INITIATORS=true\\\"};duplicate=1\",\"expected\":\"External initiators are disabled on nodes by default. Set the FEATURE_EXTERNAL_INITIATORS=true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If a URL is provided, Chainlink will notify this URL of added and deleted jobs that can be triggered by this external initiator. This allows the external initiator to program in certain actions e.g. subscribing/unsubscribing to logs based on the job, etc.\\\"};duplicate=1\",\"expected\":\"If a URL is provided, Chainlink will notify this URL of added and deleted jobs that can be triggered by this external initiator. This allows the external initiator to program in certain actions e.g. subscribing/unsubscribing to logs based on the job, etc.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NAME: The name you want to use for your external initiator. URL: The URL of your jobs endpoint. ie: http://172.17.0.1:8080/jobs\\\"};duplicate=1\",\"expected\":\"NAME: The name you want to use for your external initiator. URL: The URL of your jobs endpoint. ie: http://172.17.0.1:8080/jobs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=2\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On creation:\\\"};duplicate=1\",\"expected\":\"On creation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On deletion:\\\"};duplicate=1\",\"expected\":\"On deletion:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Or, using the chainlink client:\\\"};duplicate=1\",\"expected\":\"Or, using the chainlink client:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set a new .env file, and add the respective values\\\"};duplicate=1\",\"expected\":\"Set a new .env file, and add the respective values\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Start your EI.\\\"};duplicate=1\",\"expected\":\"Start your EI.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The External Initiator can only initiate\\\"};duplicate=1\",\"expected\":\"The External Initiator can only initiate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This will give you the environment variables you need to run your external initiator. Copy the output. It will look something like this:\\\"};duplicate=1\",\"expected\":\"This will give you the environment variables you need to run your external initiator. Copy the output. It will look something like this:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To create an external initiator you must use the remote API. You can do this yourself, like so:\\\"};duplicate=1\",\"expected\":\"To create an external initiator you must use the remote API. You can do this yourself, like so:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To delete an external initiator you must use the remote API. You can do this yourself, like so:\\\"};duplicate=1\",\"expected\":\"To delete an external initiator you must use the remote API. You can do this yourself, like so:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To see your installed external initiators:\\\"};duplicate=1\",\"expected\":\"To see your installed external initiators:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To try a real-life example, feel free to follow along with the\\\"};duplicate=1\",\"expected\":\"To try a real-life example, feel free to follow along with the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Whatever code you used to run your external initiator, pass it the new headers created for the access headers, and then start your service. An easy way to do this is by having it read from the .env file you just created. Check out the\\\"};duplicate=1\",\"expected\":\"Whatever code you used to run your external initiator, pass it the new headers created for the access headers, and then start your service. An easy way to do this is by having it read from the .env file you just created. Check out the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can alternatively use the chainlink client for convenience:\\\"};duplicate=1\",\"expected\":\"You can alternatively use the chainlink client for convenience:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can use the chainlink client for convenience to access this API.\\\"};duplicate=1\",\"expected\":\"You can use the chainlink client for convenience to access this API.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You now can use ei_name as an initiator in your jobspec.\\\"};duplicate=1\",\"expected\":\"You now can use ei_name as an initiator in your jobspec.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You'll want to test that your job is running properly. Meeting the criteria of your EI and then checking to see if a sample job kicks off is the best way to test this.\\\"};duplicate=1\",\"expected\":\"You'll want to test that your job is running properly. Meeting the criteria of your EI and then checking to see if a sample job kicks off is the best way to test this.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and run the following command\\\"};duplicate=1\",\"expected\":\"and run the following command\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for an example.\\\"};duplicate=1\",\"expected\":\"for an example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that have been linked to it. Trying to initiate a job that is not linked will give an unauthorised error.\\\"};duplicate=1\",\"expected\":\"that have been linked to it. Trying to initiate a job that is not linked will give an unauthorised error.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to enable this feature.\\\"};duplicate=1\",\"expected\":\"to enable this feature.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"where payload is a JSON blob that contains:\\\"};duplicate=1\",\"expected\":\"where payload is a JSON blob that contains:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/external-initiators/external-initiators-in-nodes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Markdown parse error\\\",\\\"reason\\\":\\\"Unexpected lazy line in expression in container, expected line to be prefixed with `>` when in a block quote, whitespace when in a list, etc\\\",\\\"servedText\\\":\\\"\\\\n> **NOTE**\\\\n>\\\\n> External initiators are disabled on nodes by default. Set the `FEATURE_EXTERNAL_INITIATORS=true` [configuration\\\\n> variable](/chainlink-nodes/v1/configuration) to enable this feature.## Creating an external initiatorTo create an external initiator you must use the remote API. You can do this yourself, like so:```text\\\\nPOST http:///v2/external_initiators -d \\\\n```where payload is a JSON blob that contains:```json\\\\n{\\\\n \\\\\\\"name\\\\\\\": ,\\\\n \\\\\\\"url\\\\\\\": \\\\n}\\\\n```If a URL is provided, Chainlink will notify this URL of added and deleted jobs that can be triggered by this external initiator. This allows the external initiator to program in certain actions e.g. subscribing/unsubscribing to logs based on the job, etc.On creation:```text\\\\nPOST -d {\\\\\\\"jobId\\\\\\\": , \\\\\\\"type\\\\\\\": , \\\\\\\"params\\\\\\\": }\\\\n```On deletion:```text\\\\nDELETE /\\\\n```You can use the chainlink client for convenience to access this API.Enter the [Chainlink nodes CLI](/chainlink-nodes/resources/miscellaneous/#execute-commands-running-docker) and run the following command```shell\\\\nchainlink initiators create \\\\n````NAME`: The name you want to use for your external initiator.\\\\n`URL`: The URL of your jobs endpoint. ie: `http://172.17.0.1:8080/jobs`This will give you the environment variables you need to run your external initiator. Copy the output. It will look something like this:```\\\\n║ ei_name ║ http://localhost:8080/jobs ║ a4846e85727e46b48889c6e28b555696 ║ dnNfNhiiCTm1o6l+hGJVfCtRSSuDfZbj1VO4BkZG3E+b96lminE7yQHj2KALMAIk ║ iWt64+Q9benOf5JuGwJtQnbByN9rtHwSlElOVpHVTvGTP5Zb2Guwzy6w3wflwyYt ║ 56m38YkeCymYU0kr4Yg6x3e98CyAu+37y2+kMO2AL9lRMjA3hRA1ejFdG9UfFCAE\\\\n```Be sure to save these values, since the secrets cannot be shown again.You now can use `ei_name` as an initiator in your jobspec.Set a new `.env` file, and add the respective values```text\\\\nEI_DATABASEURL=postgresql://$USERNAME:$PASSWORD@$SERVER:$PORT/$DATABASE\\\\nEI_CHAINLINKURL=http://localhost:6688\\\\nEI_IC_ACCESSKEY=\\\\nEI_IC_SECRET=\\\\nEI_CI_ACCESSKEY=\\\\nEI_CI_SECRET=\\\\n```At the time of writing, the output should be in order. For example, in from the output above, `EI_IC_ACCESSKEY=a4846e85727e46b48889c6e28b555696` and so on.Start your EI.Whatever code you used to run your external initiator, pass it the new headers created for the access headers, and then start your service. An easy way to do this is by having it read from the `.env` file you just created. Check out the [Conflux External initiator](https://github.com/Conflux-Network-Global/demo-cfx-chainlink) for an example.You'll want to test that your job is running properly. Meeting the criteria of your EI and then checking to see if a sample job kicks off is the best way to test this.To try a real-life example, feel free to follow along with the [Conflux EI demo](https://www.youtube.com/watch?v=J8oJEp4qz5w).[Additional external initiator reference](https://github.com/smartcontractkit/chainlink/wiki/External-Initiators)> **NOTE**\\\\n>\\\\n> The External Initiator can only initiate [webhook jobs](/chainlink-nodes/oracle-jobs/job-types/webhook) that have been\\\\n> linked to it. Trying to initiate a job that is not linked will give an unauthorised error.## Deleting an external initiatorTo delete an external initiator you must use the remote API. You can do this yourself, like so:```text\\\\nDELETE http:///v2/external_initiators/\\\\n```You can alternatively use the chainlink client for convenience:```shell\\\\nchainlink initiators destroy \\\\n```## Listing external initiatorsTo see your installed external initiators:```text\\\\nGET http:///v2/external_initiators?size=100&page=1\\\\n```Or, using the chainlink client:```shell\\\\nchainlink initiators list\\\\n```\\\"};duplicate=1\",\"component\":\"Markdown parse error\",\"reason\":\"Unexpected lazy line in expression in container, expected line to be prefixed with `>` when in a block quote, whitespace when in a list, etc\",\"servedText\":\"\\n> **NOTE**\\n>\\n> External initiators are disabled on nodes by default. Set the `FEATURE_EXTERNAL_INITIATORS=true` [configuration\\n> variable](/chainlink-nodes/v1/configuration) to enable this feature.## Creating an external initiatorTo create an external initiator you must use the remote API. You can do this yourself, like so:```text\\nPOST http:///v2/external_initiators -d \\n```where payload is a JSON blob that contains:```json\\n{\\n \\\"name\\\": ,\\n \\\"url\\\": \\n}\\n```If a URL is provided, Chainlink will notify this URL of added and deleted jobs that can be triggered by this external initiator. This allows the external initiator to program in certain actions e.g. subscribing/unsubscribing to logs based on the job, etc.On creation:```text\\nPOST -d {\\\"jobId\\\": , \\\"type\\\": , \\\"params\\\": }\\n```On deletion:```text\\nDELETE /\\n```You can use the chainlink client for convenience to access this API.Enter the [Chainlink nodes CLI](/chainlink-nodes/resources/miscellaneous/#execute-commands-running-docker) and run the following command```shell\\nchainlink initiators create \\n````NAME`: The name you want to use for your external initiator.\\n`URL`: The URL of your jobs endpoint. ie: `http://172.17.0.1:8080/jobs`This will give you the environment variables you need to run your external initiator. Copy the output. It will look something like this:```\\n║ ei_name ║ http://localhost:8080/jobs ║ a4846e85727e46b48889c6e28b555696 ║ dnNfNhiiCTm1o6l+hGJVfCtRSSuDfZbj1VO4BkZG3E+b96lminE7yQHj2KALMAIk ║ iWt64+Q9benOf5JuGwJtQnbByN9rtHwSlElOVpHVTvGTP5Zb2Guwzy6w3wflwyYt ║ 56m38YkeCymYU0kr4Yg6x3e98CyAu+37y2+kMO2AL9lRMjA3hRA1ejFdG9UfFCAE\\n```Be sure to save these values, since the secrets cannot be shown again.You now can use `ei_name` as an initiator in your jobspec.Set a new `.env` file, and add the respective values```text\\nEI_DATABASEURL=postgresql://$USERNAME:$PASSWORD@$SERVER:$PORT/$DATABASE\\nEI_CHAINLINKURL=http://localhost:6688\\nEI_IC_ACCESSKEY=\\nEI_IC_SECRET=\\nEI_CI_ACCESSKEY=\\nEI_CI_SECRET=\\n```At the time of writing, the output should be in order. For example, in from the output above, `EI_IC_ACCESSKEY=a4846e85727e46b48889c6e28b555696` and so on.Start your EI.Whatever code you used to run your external initiator, pass it the new headers created for the access headers, and then start your service. An easy way to do this is by having it read from the `.env` file you just created. Check out the [Conflux External initiator](https://github.com/Conflux-Network-Global/demo-cfx-chainlink) for an example.You'll want to test that your job is running properly. Meeting the criteria of your EI and then checking to see if a sample job kicks off is the best way to test this.To try a real-life example, feel free to follow along with the [Conflux EI demo](https://www.youtube.com/watch?v=J8oJEp4qz5w).[Additional external initiator reference](https://github.com/smartcontractkit/chainlink/wiki/External-Initiators)> **NOTE**\\n>\\n> The External Initiator can only initiate [webhook jobs](/chainlink-nodes/oracle-jobs/job-types/webhook) that have been\\n> linked to it. Trying to initiate a job that is not linked will give an unauthorised error.## Deleting an external initiatorTo delete an external initiator you must use the remote API. You can do this yourself, like so:```text\\nDELETE http:///v2/external_initiators/\\n```You can alternatively use the chainlink client for convenience:```shell\\nchainlink initiators destroy \\n```## Listing external initiatorsTo see your installed external initiators:```text\\nGET http:///v2/external_initiators?size=100&page=1\\n```Or, using the chainlink client:```shell\\nchainlink initiators list\\n```\"}", + "{\"path\":\"chainlink-nodes/oracle-jobs/all-jobs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ExternalInitiatorsEnabled\\\"};duplicate=1\",\"expected\":\"ExternalInitiatorsEnabled\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/oracle-jobs/all-jobs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/oracle-jobs/all-jobs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"chainlink-nodes/resources/enabling-https-connections\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Let's Encrypt\\\"};duplicate=1\",\"expected\":\"Let's Encrypt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/resources/enabling-https-connections\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/enabling-https-connections\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/enabling-https-connections\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/enabling-https-connections\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"chainlink-nodes/resources/evm-performance-configuration\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"chainlink-nodes/resources/performing-system-maintenance\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/performing-system-maintenance\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/performing-system-maintenance\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/performing-system-maintenance\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=7\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/resources/run-an-ethereum-client\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=8\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/v1/fulfilling-requests\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change these settings unless you know what you are doing.\\\"};duplicate=1\",\"expected\":\"ADVANCED: Do not change these settings unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change these settings unless you know what you are doing.\\\"};duplicate=2\",\"expected\":\"ADVANCED: Do not change these settings unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change these settings unless you know what you are doing.\\\"};duplicate=3\",\"expected\":\"ADVANCED: Do not change these settings unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=1\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=10\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=11\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=12\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=13\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=14\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=15\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=16\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=17\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=18\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=19\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=2\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=20\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=21\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=3\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=4\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=5\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=6\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=7\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=8\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADVANCED: Do not change this setting unless you know what you are doing.\\\"};duplicate=9\",\"expected\":\"ADVANCED: Do not change this setting unless you know what you are doing.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=1\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=10\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=11\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=12\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=13\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=14\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=15\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=16\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=17\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=18\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=19\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=2\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=20\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=21\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=22\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=23\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=24\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=3\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=4\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=5\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=6\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=7\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=8\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION\\\"};duplicate=9\",\"expected\":\"CAUTION\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=2\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=3\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=10\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=11\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=12\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=13\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=14\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=15\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=16\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=17\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=18\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=19\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=2\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=20\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=21\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=3\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=4\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=5\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=6\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=7\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=8\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/node-config\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=9\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"chainlink-nodes/v1/running-a-chainlink-node\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/v1/running-a-chainlink-node\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/v1/running-a-chainlink-node\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/v1/running-a-chainlink-node\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"chainlink-nodes/v1/running-a-chainlink-node\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"cre\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Terms of Service\\\"};duplicate=1\",\"expected\":\"Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Terms of Service\\\"};duplicate=2\",\"expected\":\"Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre\",\"status\":\"missing\",\"language\":\"go\",\"occurrence\":\"lang=go;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Terms of Service\\\"};duplicate=1\",\"expected\":\"Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre\",\"status\":\"missing\",\"language\":\"go\",\"occurrence\":\"lang=go;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Terms of Service\\\"};duplicate=2\",\"expected\":\"Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre\",\"status\":\"missing\",\"language\":\"ts\",\"occurrence\":\"lang=ts;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Terms of Service\\\"};duplicate=1\",\"expected\":\"Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre\",\"status\":\"missing\",\"language\":\"ts\",\"occurrence\":\"lang=ts;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Terms of Service\\\"};duplicate=2\",\"expected\":\"Terms of Service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre\",\"status\":\"unverifiable\",\"language\":\"go\",\"occurrence\":\"lang=go;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre\",\"status\":\"unverifiable\",\"language\":\"go\",\"occurrence\":\"lang=go;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre\",\"status\":\"unverifiable\",\"language\":\"ts\",\"occurrence\":\"lang=ts;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre\",\"status\":\"unverifiable\",\"language\":\"ts\",\"occurrence\":\"lang=ts;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre-templates\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Data Feeds\\\"};duplicate=1\",\"expected\":\"Chainlink Data Feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre-templates/aws-cre-pricefeeds-por\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Deploy AWS Backend\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"1. Deploy AWS Backend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/aws-cre-pricefeeds-por\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Setup and Run CRE Workflow\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Setup and Run CRE Workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Update .env file\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"1. Update .env file\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Update .env file\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"1. Update .env file\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Configure RPC endpoints\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Configure RPC endpoints\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Install dependencies\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Install dependencies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Configure RPC endpoints\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Configure RPC endpoints\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Deploy contracts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Deploy contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Deploy contracts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"4. Deploy contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Generate contract bindings\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"4. Generate contract bindings\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Configure workflow\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"5. Configure workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Configure workflow\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"5. Configure workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"6. Simulate the workflow\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"6. Simulate the workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/custom-data-feed\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"6. Simulate the workflow\\\",\\\"depth\\\":3};duplicate=2\",\"expected\":\"6. Simulate the workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Clone the repository\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"1. Clone the repository\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Test the CRE workflow\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"1. Test the CRE workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Deploy the smart contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Deploy the smart contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Set environment variables\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Set environment variables\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Create a prediction market\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Create a prediction market\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Run the simulation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Run the simulation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. (Optional) Place a prediction\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"4. (Optional) Place a prediction\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Configure and run the CRE workflow\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"5. Configure and run the CRE workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"6. Request settlement and execute\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"6. Request settlement and execute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/prediction-market-demo\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"7. (Optional) Claim winnings and run frontend\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"7. (Optional) Claim winnings and run frontend\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/x402-price-alerts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Remix IDE\\\"};duplicate=1\",\"expected\":\"Remix IDE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/x402-price-alerts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The book is available at:\\\"};duplicate=1\",\"expected\":\"The book is available at:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre-templates/x402-price-alerts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre-templates/x402-price-alerts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre-templates/x402-price-alerts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"b\\\",\\\"reason\\\":\\\"Raw HTML element b is not statically projected\\\"};duplicate=1\",\"component\":\"b\",\"reason\":\"Raw HTML element b is not statically projected\"}", + "{\"path\":\"cre/account\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/account\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/account/creating-account\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE UI\\\"};duplicate=1\",\"expected\":\"CRE UI\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/account/creating-account\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/account/creating-account\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/account/creating-account\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/account/managing-auth\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE platform\\\"};duplicate=1\",\"expected\":\"CRE platform\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/account/managing-auth\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/concepts/typescript-wasm-runtime\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Noble\\\"};duplicate=1\",\"expected\":\"Noble\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/concepts/typescript-wasm-runtime\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WebAssembly (WASM)\\\"};duplicate=1\",\"expected\":\"WebAssembly (WASM)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/concepts/typescript-wasm-runtime\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/concepts/typescript-wasm-runtime\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;artifact\",\"reason\":\"No Markdown artifact was built\"}", + "{\"path\":\"cre/getting-started/before-you-build-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Noble\\\"};duplicate=1\",\"expected\":\"Noble\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/before-you-build-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"formatUnits()\\\"};duplicate=1\",\"expected\":\"formatUnits()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/before-you-build-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's parseUnits()\\\"};duplicate=1\",\"expected\":\"viem's parseUnits()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/before-you-build-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/before-you-build-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/before-you-build-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/build-with-ai-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://docs.chain.link/cre/go/llms-full.txt\\\"};duplicate=1\",\"expected\":\"https://docs.chain.link/cre/go/llms-full.txt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/build-with-ai-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://docs.chain.link/cre/ts/llms-full.txt\\\"};duplicate=1\",\"expected\":\"https://docs.chain.link/cre/ts/llms-full.txt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"chmod +x cre\\\"};duplicate=1\",\"expected\":\"chmod +x cre\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cre version\\\"};duplicate=1\",\"expected\":\"cre version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cre_darwin_arm64.zip sha256:1359415a1f1baee7643107b82b3a0589a3627aef71018644e5c488960a97e955\\\"};duplicate=1\",\"expected\":\"cre_darwin_arm64.zip sha256:1359415a1f1baee7643107b82b3a0589a3627aef71018644e5c488960a97e955\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"echo 'export PATH=\\\\\\\"/Users/yourname/Downloads/cre:$PATH\\\\\\\"' >> ~/.bash_profile source ~/.bash_profile\\\"};duplicate=1\",\"expected\":\"echo 'export PATH=\\\"/Users/yourname/Downloads/cre:$PATH\\\"' >> ~/.bash_profile source ~/.bash_profile\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"echo 'export PATH=\\\\\\\"/Users/yourname/Downloads/cre:$PATH\\\\\\\"' >> ~/.zshrc source ~/.zshrc\\\"};duplicate=1\",\"expected\":\"echo 'export PATH=\\\"/Users/yourname/Downloads/cre:$PATH\\\"' >> ~/.zshrc source ~/.zshrc\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"export PATH=\\\\\\\"$(pwd):$PATH\\\\\\\"\\\"};duplicate=1\",\"expected\":\"export PATH=\\\"$(pwd):$PATH\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mv cre_{CRE_CLI_VERSION}_darwin_arm64 cre\\\"};duplicate=1\",\"expected\":\"mv cre_{CRE_CLI_VERSION}_darwin_arm64 cre\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"pwd\\\"};duplicate=1\",\"expected\":\"pwd\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"shasum -a 256 cre_darwin_arm64.zip\\\"};duplicate=1\",\"expected\":\"shasum -a 256 cre_darwin_arm64.zip\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"sudo mv cre /usr/local/bin/\\\"};duplicate=1\",\"expected\":\"sudo mv cre /usr/local/bin/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"tar -xzf cre_linux_arm64.tar.gz\\\"};duplicate=1\",\"expected\":\"tar -xzf cre_linux_arm64.tar.gz\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"unzip cre_darwin_arm64.zip\\\"};duplicate=1\",\"expected\":\"unzip cre_darwin_arm64.zip\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"xattr -c cre\\\"};duplicate=1\",\"expected\":\"xattr -c cre\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Verify file integrity\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"1. Verify file integrity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Extract and install\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"2. Extract and install\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Add the CLI to your PATH\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"3. Add the CLI to your PATH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Verify the installation\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"4. Verify the installation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Manual installation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Manual installation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CRE CLI releases page\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/cre-cli/releases\\\"};duplicate=1\",\"expected\":\"CRE CLI releases page -> https://github.com/smartcontractkit/cre-cli/releases\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"https://github.com/smartcontractkit/cre-cli/releases\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/cre-cli/releases\\\"};duplicate=1\",\"expected\":\"https://github.com/smartcontractkit/cre-cli/releases -> https://github.com/smartcontractkit/cre-cli/releases\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", you'll see something like:\\\"};duplicate=1\",\"expected\":\", you'll see something like:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=2\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add to your shell profile (choose based on your shell):\\\"};duplicate=1\",\"expected\":\"Add to your shell profile (choose based on your shell):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After downloading the correct file from the releases page, move on to the next step to verify its integrity.\\\"};duplicate=1\",\"expected\":\"After downloading the correct file from the releases page, move on to the next step to verify its integrity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Alternative: Add current directory to PATH\\\"};duplicate=1\",\"expected\":\"Alternative: Add current directory to PATH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Before installing, verify the file integrity using a checksum to ensure the binary hasn't been tampered with:\\\"};duplicate=1\",\"expected\":\"Before installing, verify the file integrity using a checksum to ensure the binary hasn't been tampered with:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version\\\"};duplicate=1\",\"expected\":\"CRE CLI version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Check the SHA-256 checksum\\\"};duplicate=1\",\"expected\":\"Check the SHA-256 checksum\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compare the SHA-256 checksum shown next to the file with your command output\\\"};duplicate=1\",\"expected\":\"Compare the SHA-256 checksum shown next to the file with your command output\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compare the output with the official checksum from the\\\"};duplicate=1\",\"expected\":\"Compare the output with the official checksum from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Example: For cre_darwin_arm64.zip in release\\\"};duplicate=1\",\"expected\":\"Example: For cre_darwin_arm64.zip in release\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expected output:\\\"};duplicate=1\",\"expected\":\"Expected output:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Extract the archive\\\"};duplicate=1\",\"expected\":\"Extract the archive\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Find the release version you downloaded (e.g.,\\\"};duplicate=1\",\"expected\":\"Find the release version you downloaded (e.g.,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Find your current directory:\\\"};duplicate=1\",\"expected\":\"Find your current directory:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For .tar.gz files:\\\"};duplicate=1\",\"expected\":\"For .tar.gz files:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For .zip files:\\\"};duplicate=1\",\"expected\":\"For .zip files:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For bash:\\\"};duplicate=1\",\"expected\":\"For bash:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For temporary access (this session only):\\\"};duplicate=1\",\"expected\":\"For temporary access (this session only):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For zsh (default on newer macOS):\\\"};duplicate=1\",\"expected\":\"For zsh (default on newer macOS):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go to\\\"};duplicate=1\",\"expected\":\"Go to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If the checksums match, the file is authentic and safe to install. If they don't match, do not proceed with installation and contact the Chainlink team for assistance.\\\"};duplicate=1\",\"expected\":\"If the checksums match, the file is authentic and safe to install. If they don't match, do not proceed with installation and contact the Chainlink team for assistance.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you prefer to install manually or the automatic installation doesn't work for your environment, follow these steps:\\\"};duplicate=1\",\"expected\":\"If you prefer to install manually or the automatic installation doesn't work for your environment, follow these steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you prefer to keep the binary in its current location, you can add that directory to your PATH:\\\"};duplicate=1\",\"expected\":\"If you prefer to keep the binary in its current location, you can add that directory to your PATH:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you see warnings about \\\\\\\"unrecognized developer/source\\\\\\\" on macOS, run:\\\"};duplicate=1\",\"expected\":\"If you see warnings about \\\"unrecognized developer/source\\\" on macOS, run:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Make it executable:\\\"};duplicate=1\",\"expected\":\"Make it executable:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Which file should I download?\\\"};duplicate=1\",\"expected\":\"NOTE: Which file should I download?\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: macOS Gatekeeper\\\"};duplicate=1\",\"expected\":\"NOTE: macOS Gatekeeper\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to the directory where you downloaded the archive.\\\"};duplicate=1\",\"expected\":\"Navigate to the directory where you downloaded the archive.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note (macOS Gatekeeper): If you see warnings about \\\\\\\"unrecognized developer/source\\\\\\\", remove extended attributes:\\\"};duplicate=1\",\"expected\":\"Note (macOS Gatekeeper): If you see warnings about \\\"unrecognized developer/source\\\", remove extended attributes:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note the full path (e.g., /Users/yourname/Downloads/cre)\\\"};duplicate=1\",\"expected\":\"Note the full path (e.g., /Users/yourname/Downloads/cre)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: The ldd2-35 binaries are compiled for older glibc versions (2.35 and below). If you're using a non-Ubuntu Linux distribution, check your glibc version with\\\"};duplicate=1\",\"expected\":\"Note: The ldd2-35 binaries are compiled for older glibc versions (2.35 and below). If you're using a non-Ubuntu Linux distribution, check your glibc version with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Now that you have the cre binary, you need to make it accessible from anywhere on your system. This means you can run cre commands from any directory, not just where the binary is located.\\\"};duplicate=1\",\"expected\":\"Now that you have the cre binary, you need to make it accessible from anywhere on your system. This means you can run cre commands from any directory, not just where the binary is located.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On Linux, the binary depends on both your architecture and OS version. First, run\\\"};duplicate=1\",\"expected\":\"On Linux, the binary depends on both your architecture and OS version. First, run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On macOS (darwin), run\\\"};duplicate=1\",\"expected\":\"On macOS (darwin), run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open a new terminal window and run:\\\"};duplicate=1\",\"expected\":\"Open a new terminal window and run:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Recommended approach: Move to a standard location\\\"};duplicate=1\",\"expected\":\"Recommended approach: Move to a standard location\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rename the extracted binary to cre\\\"};duplicate=1\",\"expected\":\"Rename the extracted binary to cre\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace /Users/yourname/Downloads/cre with your actual directory path from step 1.\\\"};duplicate=1\",\"expected\":\"Replace /Users/yourname/Downloads/cre with your actual directory path from step 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the following command in the directory where you downloaded the archive (replace the filename with your specific binary):\\\"};duplicate=1\",\"expected\":\"Run the following command in the directory where you downloaded the archive (replace the filename with your specific binary):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Test that cre is accessible:\\\"};duplicate=1\",\"expected\":\"Test that cre is accessible:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The CRE CLI is publicly available on GitHub. Visit the releases page and download the appropriate binary archive for your operating system and architecture.\\\"};duplicate=1\",\"expected\":\"The CRE CLI is publicly available on GitHub. Visit the releases page and download the appropriate binary archive for your operating system and architecture.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The easiest and most reliable method is to move the cre binary to a directory that's already in your system's PATH. For example:\\\"};duplicate=1\",\"expected\":\"The easiest and most reliable method is to move the cre binary to a directory that's already in your system's PATH. For example:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The file you need depends on your operating system and CPU architecture:\\\"};duplicate=1\",\"expected\":\"The file you need depends on your operating system and CPU architecture:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This command moves the cre binary to /usr/local/bin/, which is typically included in your PATH by default.\\\"};duplicate=1\",\"expected\":\"This command moves the cre binary to /usr/local/bin/, which is typically included in your PATH by default.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is\\\"};duplicate=1\",\"expected\":\"This page explains how to install the CRE CLI on macOS or Linux. The recommended version at the time of writing is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ubuntu 22.04 or older:\\\"};duplicate=1\",\"expected\":\"Ubuntu 22.04 or older:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ubuntu 24.04 or newer:\\\"};duplicate=1\",\"expected\":\"Ubuntu 24.04 or newer:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Assets section, locate your downloaded file\\\"};duplicate=1\",\"expected\":\"Under the Assets section, locate your downloaded file\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verify against official checksums\\\"};duplicate=1\",\"expected\":\"Verify against official checksums\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"aarch64 (ARM) → Download cre_linux_arm64.tar.gz\\\"};duplicate=1\",\"expected\":\"aarch64 (ARM) → Download cre_linux_arm64.tar.gz\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"aarch64 (ARM) → Download cre_linux_arm64_ldd2-35.tar.gz\\\"};duplicate=1\",\"expected\":\"aarch64 (ARM) → Download cre_linux_arm64_ldd2-35.tar.gz\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and use the ldd2-35 binary if your version is 2.35 or lower.\\\"};duplicate=1\",\"expected\":\"and use the ldd2-35 binary if your version is 2.35 or lower.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"arm64 (Apple Silicon) → Download cre_darwin_arm64.zip\\\"};duplicate=1\",\"expected\":\"arm64 (Apple Silicon) → Download cre_darwin_arm64.zip\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ldd --version\\\"};duplicate=1\",\"expected\":\"ldd --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lsb_release -rs\\\"};duplicate=1\",\"expected\":\"lsb_release -rs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to check your Ubuntu version:\\\"};duplicate=1\",\"expected\":\"to check your Ubuntu version:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to check your architecture, then\\\"};duplicate=1\",\"expected\":\"to check your architecture, then\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uname -m\\\"};duplicate=1\",\"expected\":\"uname -m\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"uname -m\\\"};duplicate=2\",\"expected\":\"uname -m\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"x86_64 (AMD/Intel) → Download cre_linux_amd64.tar.gz\\\"};duplicate=1\",\"expected\":\"x86_64 (AMD/Intel) → Download cre_linux_amd64.tar.gz\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"x86_64 (AMD/Intel) → Download cre_linux_amd64_ldd2-35.tar.gz\\\"};duplicate=1\",\"expected\":\"x86_64 (AMD/Intel) → Download cre_linux_amd64_ldd2-35.tar.gz\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"x86_64 (Intel) → Download cre_darwin_amd64.zip\\\"};duplicate=1\",\"expected\":\"x86_64 (Intel) → Download cre_darwin_amd64.zip\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"xattr -c $HOME/.cre/cre\\\"};duplicate=1\",\"expected\":\"xattr -c $HOME/.cre/cre\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DownloadButton\\\",\\\"reason\\\":\\\"Unsupported MDX component DownloadButton\\\"};duplicate=1\",\"component\":\"DownloadButton\",\"reason\":\"Unsupported MDX component DownloadButton\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=1\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=2\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=3\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=4\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=5\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"center\\\",\\\"reason\\\":\\\"Raw HTML element center is not statically projected\\\"};duplicate=1\",\"component\":\"center\",\"reason\":\"Raw HTML element center is not statically projected\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"cre/getting-started/cli-installation/macos-linux\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(your installed semver may differ).\\\"};duplicate=1\",\"expected\":\"(your installed semver may differ).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", you'll see something like:\\\"};duplicate=1\",\"expected\":\", you'll see something like:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version\\\"};duplicate=1\",\"expected\":\"CRE CLI version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version\\\"};duplicate=2\",\"expected\":\"CRE CLI version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Example: For cre_windows_amd64.zip in release\\\"};duplicate=1\",\"expected\":\"Example: For cre_windows_amd64.zip in release\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expected output:\\\"};duplicate=1\",\"expected\":\"Expected output:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Find the release version you downloaded (e.g.,\\\"};duplicate=1\",\"expected\":\"Find the release version you downloaded (e.g.,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is\\\"};duplicate=1\",\"expected\":\"This page explains how to install the Chainlink Developer Platform CLI (also referred to as the CRE CLI) on Windows. The recommended version at the time of writing is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You should see one line like\\\"};duplicate=1\",\"expected\":\"You should see one line like\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DownloadButton\\\",\\\"reason\\\":\\\"Unsupported MDX component DownloadButton\\\"};duplicate=1\",\"component\":\"DownloadButton\",\"reason\":\"Unsupported MDX component DownloadButton\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=1\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=2\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=3\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=4\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=5\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"center\\\",\\\"reason\\\":\\\"Raw HTML element center is not statically projected\\\"};duplicate=1\",\"component\":\"center\",\"reason\":\"Raw HTML element center is not statically projected\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"cre/getting-started/cli-installation/windows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See\\\"};duplicate=1\",\"expected\":\". See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go module\\\"};duplicate=1\",\"expected\":\"Go module\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go: You must have Go version 1.25.3 or higher installed. Check your version with\\\"};duplicate=1\",\"expected\":\"Go: You must have Go version 1.25.3 or higher installed. Check your version with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Project name:\\\"};duplicate=1\",\"expected\":\"Project name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Workflow name:\\\"};duplicate=1\",\"expected\":\"Workflow name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"go version\\\"};duplicate=1\",\"expected\":\"go version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"my-calculator-workflow\\\"};duplicate=1\",\"expected\":\"my-calculator-workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"onchain-calculator\\\"};duplicate=1\",\"expected\":\"onchain-calculator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See\\\"};duplicate=1\",\"expected\":\". See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bun\\\"};duplicate=1\",\"expected\":\"Bun\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Project name:\\\"};duplicate=1\",\"expected\":\"Project name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Workflow name:\\\"};duplicate=1\",\"expected\":\"Workflow name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bun --version\\\"};duplicate=1\",\"expected\":\"bun --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"my-calculator-workflow\\\"};duplicate=1\",\"expected\":\"my-calculator-workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"onchain-calculator\\\"};duplicate=1\",\"expected\":\"onchain-calculator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"version 1.2.21 or higher installed. Check your version with\\\"};duplicate=1\",\"expected\":\"version 1.2.21 or higher installed. Check your version with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-1-project-setup-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-3-reading-onchain-value-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-3-reading-onchain-value-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Viem\\\"};duplicate=1\",\"expected\":\"Viem\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-3-reading-onchain-value-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Viem\\\"};duplicate=2\",\"expected\":\"Viem\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-3-reading-onchain-value-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-3-reading-onchain-value-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-3-reading-onchain-value-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\\\"};duplicate=1\",\"expected\":\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\\\"};duplicate=2\",\"expected\":\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\\\"};duplicate=1\",\"expected\":\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\\\"};duplicate=2\",\"expected\":\"0x95e10BaC2B89aB4D8508ccEC3f08494FcB3D23cb\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/getting-started/part-4-writing-onchain-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/guides/operations/custom-rust-plugins\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WebAssembly\\\"};duplicate=1\",\"expected\":\"WebAssembly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/custom-rust-plugins\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/custom-rust-plugins-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WebAssembly\\\"};duplicate=1\",\"expected\":\"WebAssembly\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/custom-rust-plugins-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/deploying-to-onchain-registry-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\\\"};duplicate=1\",\"expected\":\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/deploying-to-onchain-registry-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/deploying-to-onchain-registry-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\\\"};duplicate=1\",\"expected\":\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/deploying-to-onchain-registry-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/monitoring-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/monitoring-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/workflows\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/monitoring-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/monitoring-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/simulating-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WebAssembly (WASM)\\\"};duplicate=1\",\"expected\":\"WebAssembly (WASM)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/simulating-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/simulating-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/simulating-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/operations/simulating-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/guides/operations/verifying-workflows-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run cre workflow hash -h for full usage details and additional flags.\\\"};duplicate=1\",\"expected\":\"Run cre workflow hash -h for full usage details and additional flags.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/verifying-workflows-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP\\\"};duplicate=1\",\"expected\":\"TIP\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/verifying-workflows-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"cre/guides/operations/verifying-workflows-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run cre workflow hash -h for full usage details and additional flags.\\\"};duplicate=1\",\"expected\":\"Run cre workflow hash -h for full usage details and additional flags.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/verifying-workflows-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP\\\"};duplicate=1\",\"expected\":\"TIP\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/operations/verifying-workflows-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Aside\\\",\\\"reason\\\":\\\"Served Markdown contains residual runtime syntax\\\",\\\"servedText\\\":\\\"\\\"};duplicate=1\",\"component\":\"Aside\",\"reason\":\"Served Markdown contains residual runtime syntax\",\"servedText\":\"\"}", + "{\"path\":\"cre/guides/workflow/time-in-workflows-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OCR (Off-Chain Reporting)\\\"};duplicate=1\",\"expected\":\"OCR (Off-Chain Reporting)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/time-in-workflows-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/time-in-workflows-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OCR (Off-Chain Reporting)\\\"};duplicate=1\",\"expected\":\"OCR (Off-Chain Reporting)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/time-in-workflows-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADI Mainnet\\\"};duplicate=1\",\"expected\":\"ADI Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADI Testnet\\\"};duplicate=1\",\"expected\":\"ADI Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apechain Curtis\\\"};duplicate=1\",\"expected\":\"Apechain Curtis\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum One\\\"};duplicate=1\",\"expected\":\"Arbitrum One\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arc Testnet\\\"};duplicate=1\",\"expected\":\"Arc Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Fuji\\\"};duplicate=1\",\"expected\":\"Avalanche Fuji\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche\\\"};duplicate=1\",\"expected\":\"Avalanche\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BNB Chain Testnet\\\"};duplicate=1\",\"expected\":\"BNB Chain Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BNB Chain\\\"};duplicate=1\",\"expected\":\"BNB Chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base Sepolia\\\"};duplicate=1\",\"expected\":\"Base Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base\\\"};duplicate=1\",\"expected\":\"Base\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Celo Sepolia\\\"};duplicate=1\",\"expected\":\"Celo Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Celo\\\"};duplicate=1\",\"expected\":\"Celo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cronos Testnet\\\"};duplicate=1\",\"expected\":\"Cronos Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Mainnet\\\"};duplicate=1\",\"expected\":\"Ethereum Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Sepolia\\\"};duplicate=1\",\"expected\":\"Ethereum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gnosis Chain\\\"};duplicate=1\",\"expected\":\"Gnosis Chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gnosis Chiado\\\"};duplicate=1\",\"expected\":\"Gnosis Chiado\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hyperliquid Mainnet\\\"};duplicate=1\",\"expected\":\"Hyperliquid Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hyperliquid Testnet\\\"};duplicate=1\",\"expected\":\"Hyperliquid Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ink Sepolia\\\"};duplicate=1\",\"expected\":\"Ink Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ink\\\"};duplicate=1\",\"expected\":\"Ink\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Jovay Mainnet\\\"};duplicate=1\",\"expected\":\"Jovay Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Jovay Testnet\\\"};duplicate=1\",\"expected\":\"Jovay Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Linea Sepolia\\\"};duplicate=1\",\"expected\":\"Linea Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Linea\\\"};duplicate=1\",\"expected\":\"Linea\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mantle Sepolia\\\"};duplicate=1\",\"expected\":\"Mantle Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mantle\\\"};duplicate=1\",\"expected\":\"Mantle\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MegaETH Testnet 2\\\"};duplicate=1\",\"expected\":\"MegaETH Testnet 2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MegaETH\\\"};duplicate=1\",\"expected\":\"MegaETH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monad Testnet\\\"};duplicate=1\",\"expected\":\"Monad Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monad\\\"};duplicate=1\",\"expected\":\"Monad\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OP Mainnet\\\"};duplicate=1\",\"expected\":\"OP Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OP Sepolia\\\"};duplicate=1\",\"expected\":\"OP Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pharos Atlantic Testnet\\\"};duplicate=1\",\"expected\":\"Pharos Atlantic Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pharos Mainnet\\\"};duplicate=1\",\"expected\":\"Pharos Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Plasma Testnet\\\"};duplicate=1\",\"expected\":\"Plasma Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Plasma\\\"};duplicate=1\",\"expected\":\"Plasma\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Amoy\\\"};duplicate=1\",\"expected\":\"Polygon Amoy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon\\\"};duplicate=1\",\"expected\":\"Polygon\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Robinhood Testnet\\\"};duplicate=1\",\"expected\":\"Robinhood Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Scroll\\\"};duplicate=1\",\"expected\":\"Scroll\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sonic Testnet\\\"};duplicate=1\",\"expected\":\"Sonic Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sonic\\\"};duplicate=1\",\"expected\":\"Sonic\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stable Testnet\\\"};duplicate=1\",\"expected\":\"Stable Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"T-REX Testnet\\\"};duplicate=1\",\"expected\":\"T-REX Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TAC Testnet\\\"};duplicate=1\",\"expected\":\"TAC Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unichain Sepolia\\\"};duplicate=1\",\"expected\":\"Unichain Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"World Chain Sepolia\\\"};duplicate=1\",\"expected\":\"World Chain Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"World Chain\\\"};duplicate=1\",\"expected\":\"World Chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"XLayer Mainnet\\\"};duplicate=1\",\"expected\":\"XLayer Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"XLayer Testnet\\\"};duplicate=1\",\"expected\":\"XLayer Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ZKSync Era Sepolia\\\"};duplicate=1\",\"expected\":\"ZKSync Era Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ZKSync Era\\\"};duplicate=1\",\"expected\":\"ZKSync Era\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=10\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=11\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=12\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=13\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=14\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=15\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=16\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=17\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=18\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=19\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=20\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=21\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=22\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=23\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=24\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=25\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=26\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=27\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=28\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=29\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=30\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=31\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=32\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=33\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=34\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=35\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=36\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=37\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=38\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=39\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=40\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=41\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=42\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=43\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=44\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=45\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=46\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=47\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=48\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=49\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=50\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=51\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=52\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=53\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=54\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=55\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=6\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=7\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=8\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=9\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADI Mainnet\\\"};duplicate=1\",\"expected\":\"ADI Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ADI Testnet\\\"};duplicate=1\",\"expected\":\"ADI Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Apechain Curtis\\\"};duplicate=1\",\"expected\":\"Apechain Curtis\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum One\\\"};duplicate=1\",\"expected\":\"Arbitrum One\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arc Testnet\\\"};duplicate=1\",\"expected\":\"Arc Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Fuji\\\"};duplicate=1\",\"expected\":\"Avalanche Fuji\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche\\\"};duplicate=1\",\"expected\":\"Avalanche\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BNB Smart Chain\\\"};duplicate=1\",\"expected\":\"BNB Smart Chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BSC Testnet\\\"};duplicate=1\",\"expected\":\"BSC Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base Sepolia\\\"};duplicate=1\",\"expected\":\"Base Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base\\\"};duplicate=1\",\"expected\":\"Base\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Celo Sepolia\\\"};duplicate=1\",\"expected\":\"Celo Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Celo\\\"};duplicate=1\",\"expected\":\"Celo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cronos Testnet\\\"};duplicate=1\",\"expected\":\"Cronos Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Mainnet\\\"};duplicate=1\",\"expected\":\"Ethereum Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Sepolia\\\"};duplicate=1\",\"expected\":\"Ethereum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gnosis Chain\\\"};duplicate=1\",\"expected\":\"Gnosis Chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gnosis Chiado\\\"};duplicate=1\",\"expected\":\"Gnosis Chiado\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hyperliquid Mainnet\\\"};duplicate=1\",\"expected\":\"Hyperliquid Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hyperliquid Testnet\\\"};duplicate=1\",\"expected\":\"Hyperliquid Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ink Sepolia\\\"};duplicate=1\",\"expected\":\"Ink Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ink\\\"};duplicate=1\",\"expected\":\"Ink\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Jovay Mainnet\\\"};duplicate=1\",\"expected\":\"Jovay Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Jovay Testnet\\\"};duplicate=1\",\"expected\":\"Jovay Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Linea Sepolia\\\"};duplicate=1\",\"expected\":\"Linea Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Linea\\\"};duplicate=1\",\"expected\":\"Linea\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mantle Sepolia\\\"};duplicate=1\",\"expected\":\"Mantle Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Mantle\\\"};duplicate=1\",\"expected\":\"Mantle\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MegaETH Testnet 2\\\"};duplicate=1\",\"expected\":\"MegaETH Testnet 2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MegaETH\\\"};duplicate=1\",\"expected\":\"MegaETH\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monad Testnet\\\"};duplicate=1\",\"expected\":\"Monad Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monad\\\"};duplicate=1\",\"expected\":\"Monad\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OP Mainnet\\\"};duplicate=1\",\"expected\":\"OP Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OP Sepolia\\\"};duplicate=1\",\"expected\":\"OP Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pharos Atlantic Testnet\\\"};duplicate=1\",\"expected\":\"Pharos Atlantic Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pharos Mainnet\\\"};duplicate=1\",\"expected\":\"Pharos Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Plasma Testnet\\\"};duplicate=1\",\"expected\":\"Plasma Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Plasma\\\"};duplicate=1\",\"expected\":\"Plasma\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Amoy\\\"};duplicate=1\",\"expected\":\"Polygon Amoy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon\\\"};duplicate=1\",\"expected\":\"Polygon\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Robinhood Testnet\\\"};duplicate=1\",\"expected\":\"Robinhood Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Scroll\\\"};duplicate=1\",\"expected\":\"Scroll\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sonic Testnet\\\"};duplicate=1\",\"expected\":\"Sonic Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sonic\\\"};duplicate=1\",\"expected\":\"Sonic\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stable Testnet\\\"};duplicate=1\",\"expected\":\"Stable Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"T-REX Testnet\\\"};duplicate=1\",\"expected\":\"T-REX Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TAC Testnet\\\"};duplicate=1\",\"expected\":\"TAC Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unichain Sepolia\\\"};duplicate=1\",\"expected\":\"Unichain Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"World Chain Sepolia\\\"};duplicate=1\",\"expected\":\"World Chain Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"World Chain\\\"};duplicate=1\",\"expected\":\"World Chain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"XLayer Mainnet\\\"};duplicate=1\",\"expected\":\"XLayer Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"XLayer Testnet\\\"};duplicate=1\",\"expected\":\"XLayer Testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ZKSync Era Sepolia\\\"};duplicate=1\",\"expected\":\"ZKSync Era Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ZKSync Era\\\"};duplicate=1\",\"expected\":\"ZKSync Era\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=10\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=11\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=12\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=13\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=14\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=15\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=16\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=17\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=18\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=19\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=20\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=21\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=22\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=23\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=24\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=25\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=26\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=27\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=28\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=29\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=30\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=31\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=32\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=33\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=34\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=35\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=36\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=37\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=38\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=39\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=40\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=41\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=42\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=43\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=44\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=45\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=46\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=47\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=48\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=49\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=50\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=51\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=52\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=53\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=54\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=55\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=6\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=7\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=8\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/forwarder-directory-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=9\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's decodeFunctionResult()\\\"};duplicate=1\",\"expected\":\"viem's decodeFunctionResult()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's encodeFunctionData()\\\"};duplicate=1\",\"expected\":\"viem's encodeFunctionData()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's formatUnits()\\\"};duplicate=1\",\"expected\":\"viem's formatUnits()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's parseAbi\\\"};duplicate=1\",\"expected\":\"viem's parseAbi\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-read-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/generating-reports-single-values\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Manual ABI encoding\\\"};duplicate=1\",\"expected\":\"Manual ABI encoding\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Manual tuple encoding\\\"};duplicate=1\",\"expected\":\"Manual tuple encoding\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report generation\\\"};duplicate=1\",\"expected\":\"Report generation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report generation\\\"};duplicate=2\",\"expected\":\"Report generation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submission\\\"};duplicate=1\",\"expected\":\"Report submission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report submission\\\"};duplicate=2\",\"expected\":\"Report submission\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's encodeAbiParameters()\\\"};duplicate=1\",\"expected\":\"viem's encodeAbiParameters()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/overview-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/writing-data-onchain\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Number.MAX_SAFE_INTEGER\\\"};duplicate=1\",\"expected\":\"Number.MAX_SAFE_INTEGER\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/writing-data-onchain\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem's parseUnits()\\\"};duplicate=1\",\"expected\":\"viem's parseUnits()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/writing-data-onchain\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/onchain-write/writing-data-onchain\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/overview-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem\\\"};duplicate=1\",\"expected\":\"viem\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-evm-client/overview-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"webhook.site\\\"};duplicate=1\",\"expected\":\"webhook.site\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"webhook.site\\\"};duplicate=2\",\"expected\":\"webhook.site\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"webhook.site\\\"};duplicate=1\",\"expected\":\"webhook.site\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"webhook.site\\\"};duplicate=2\",\"expected\":\"webhook.site\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-http-client/post-request-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-randomness-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Noble\\\"};duplicate=1\",\"expected\":\"Noble\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-randomness-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IANA timezone identifier\\\"};duplicate=1\",\"expected\":\"IANA timezone identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"crontab.guru\\\"};duplicate=1\",\"expected\":\"crontab.guru\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"IANA timezone identifier\\\"};duplicate=1\",\"expected\":\"IANA timezone identifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"crontab.guru\\\"};duplicate=1\",\"expected\":\"crontab.guru\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/cron-trigger-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/evm-log-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bun\\\"};duplicate=1\",\"expected\":\"Bun\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/workflows\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre-http-trigger TypeScript package\\\"};duplicate=1\",\"expected\":\"cre-http-trigger TypeScript package\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre-http-trigger package\\\"};duplicate=1\",\"expected\":\"cre-http-trigger package\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/local-testing-tool\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/workflows\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/workflows\\\"};duplicate=2\",\"expected\":\"app.chain.link/cre/workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre-http-trigger source code\\\"};duplicate=1\",\"expected\":\"cre-http-trigger source code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"eth_signatures.go\\\"};duplicate=1\",\"expected\":\"eth_signatures.go\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"jwt.go\\\"};duplicate=1\",\"expected\":\"jwt.go\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/guides/workflow/using-triggers/http-trigger/triggering-deployed-workflows\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/organization/inviting-members\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/inviting-members\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Workflow Registry contract)\\\"};duplicate=1\",\"expected\":\"(Workflow Registry contract)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(no ETH transfer)\\\"};duplicate=1\",\"expected\":\"(no ETH transfer)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0\\\"};duplicate=1\",\"expected\":\"0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\\\"};duplicate=1\",\"expected\":\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\\\"};duplicate=2\",\"expected\":\"0x4Ac54353FA4Fa961AfcC5ec4B118596d3305E7e5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x\\\"};duplicate=1\",\"expected\":\"0x\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"All linked addresses are visible to organization members via\\\"};duplicate=1\",\"expected\":\"All linked addresses are visible to organization members via\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Send and enter the contract address as the recipient\\\"};duplicate=1\",\"expected\":\"Click Send and enter the contract address as the recipient\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data: Paste the transaction data from the CLI output (add\\\"};duplicate=1\",\"expected\":\"Data: Paste the transaction data from the CLI output (add\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Etherscan\\\"};duplicate=1\",\"expected\":\"Etherscan\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To address:\\\"};duplicate=1\",\"expected\":\"To address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value:\\\"};duplicate=1\",\"expected\":\"Value:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre account list-key\\\"};duplicate=1\",\"expected\":\"cre account list-key\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"prefix if required by your multi-sig interface)\\\"};duplicate=1\",\"expected\":\"prefix if required by your multi-sig interface)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/linking-keys\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Access workflow execution data\\\"};duplicate=1\",\"expected\":\"Access workflow execution data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy and manage workflows under their linked addresses\\\"};duplicate=1\",\"expected\":\"Deploy and manage workflows under their linked addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy, activate, pause, update, and delete workflows\\\"};duplicate=1\",\"expected\":\"Deploy, activate, pause, update, and delete workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Full access to all organization resources and workflows\\\"};duplicate=1\",\"expected\":\"Full access to all organization resources and workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Invite new members to the organization\\\"};duplicate=1\",\"expected\":\"Invite new members to the organization\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Link wallet addresses to the organization\\\"};duplicate=1\",\"expected\":\"Link wallet addresses to the organization\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Manage organization settings\\\"};duplicate=1\",\"expected\":\"Manage organization settings\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"View all organization workflows\\\"};duplicate=1\",\"expected\":\"View all organization workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/workflows\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/workflows\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/organization/understanding-organizations\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"CLI Installation\\\",\\\"url\\\":\\\"/cre/getting-started/cli-installation/macos-linux\\\"};duplicate=1\",\"expected\":\"CLI Installation -> /cre/getting-started/cli-installation/macos-linux\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To ensure compatibility with the guides and examples in this documentation, please use version\\\"};duplicate=1\",\"expected\":\"To ensure compatibility with the guides and examples in this documentation, please use version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide for more information.\\\"};duplicate=1\",\"expected\":\"guide for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"of the CRE CLI. You can check your installed version by running cre version. Refer to the\\\"};duplicate=1\",\"expected\":\"of the CRE CLI. You can check your installed version by running cre version. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Aside.title\\\",\\\"reason\\\":\\\"Dynamic JSX attribute (TemplateLiteral)\\\"};duplicate=1\",\"component\":\"Aside.title\",\"reason\":\"Dynamic JSX attribute (TemplateLiteral)\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=1\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/reference/cli\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"cre/reference/cli/authentication\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE platform\\\"};duplicate=1\",\"expected\":\"CRE platform\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli/authentication\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See the\\\"};duplicate=1\",\"expected\":\". See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Always check that your CLI version matches the version recommended in the documentation. The current recommended version is\\\"};duplicate=1\",\"expected\":\"Always check that your CLI version matches the version recommended in the documentation. The current recommended version is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GitHub\\\"};duplicate=1\",\"expected\":\"GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=1\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CRE_CLI_VERSION\\\",\\\"reason\\\":\\\"Dynamic MDX expression (Identifier)\\\"};duplicate=2\",\"component\":\"CRE_CLI_VERSION\",\"reason\":\"Dynamic MDX expression (Identifier)\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/reference/cli/utilities\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"cre/reference/gelato-migration-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/gelato-migration-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/reference/gelato-migration-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/gelato-migration-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional. The block number to query. Accepts:\\\"};duplicate=1\",\"expected\":\"Optional. The block number to query. Accepts:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See\\\"};duplicate=1\",\"expected\":\"See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for examples)\\\"};duplicate=1\",\"expected\":\"for examples)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• -3: finalized — an immutable block\\\"};duplicate=1\",\"expected\":\"• -3: finalized — an immutable block\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• Any positive integer: an explicit block height (see\\\"};duplicate=1\",\"expected\":\"• Any positive integer: an explicit block height (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• nil or -2 (default): latest — the most recent block\\\"};duplicate=1\",\"expected\":\"• nil or -2 (default): latest — the most recent block\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"balanceAt( runtime: Runtime, input: BalanceAtRequest | BalanceAtRequestJson ): { result: () => BalanceAtReply }\\\"};duplicate=1\",\"expected\":\"balanceAt( runtime: Runtime, input: BalanceAtRequest | BalanceAtRequestJson ): { result: () => BalanceAtReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const LAST_FINALIZED_BLOCK_NUMBER = { absVal: Buffer.from([3]).toString(\\\\\\\"base64\\\\\\\"), // 3 for finalized block sign: \\\\\\\"-1\\\\\\\", }\\\"};duplicate=1\",\"expected\":\"const LAST_FINALIZED_BLOCK_NUMBER = { absVal: Buffer.from([3]).toString(\\\"base64\\\"), // 3 for finalized block sign: \\\"-1\\\", }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"estimateGas( runtime: Runtime, input: EstimateGasRequest | EstimateGasRequestJson ): { result: () => EstimateGasReply }\\\"};duplicate=1\",\"expected\":\"estimateGas( runtime: Runtime, input: EstimateGasRequest | EstimateGasRequestJson ): { result: () => EstimateGasReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"filterLogs( runtime: Runtime, input: FilterLogsRequest | FilterLogsRequestJson ): { result: () => FilterLogsReply }\\\"};duplicate=1\",\"expected\":\"filterLogs( runtime: Runtime, input: FilterLogsRequest | FilterLogsRequestJson ): { result: () => FilterLogsReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function bigintToBytes(n: bigint): Uint8Array\\\"};duplicate=1\",\"expected\":\"function bigintToBytes(n: bigint): Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function bigintToProtoBigInt(n: number | bigint | string): BigIntJson\\\"};duplicate=1\",\"expected\":\"function bigintToProtoBigInt(n: number | bigint | string): BigIntJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function blockNumber(n: number | bigint | string): BigIntJson\\\"};duplicate=1\",\"expected\":\"function blockNumber(n: number | bigint | string): BigIntJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function bytesToBigint(bytes: Uint8Array): bigint\\\"};duplicate=1\",\"expected\":\"function bytesToBigint(bytes: Uint8Array): bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function bytesToHex(bytes: Uint8Array): Hex\\\"};duplicate=1\",\"expected\":\"function bytesToHex(bytes: Uint8Array): Hex\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function encodeCallMsg(payload: EncodeCallMsgPayload): CallMsgJson\\\"};duplicate=1\",\"expected\":\"function encodeCallMsg(payload: EncodeCallMsgPayload): CallMsgJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function hexToBase64(hex: Hex): string\\\"};duplicate=1\",\"expected\":\"function hexToBase64(hex: Hex): string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function hexToBytes(hex: string): Uint8Array\\\"};duplicate=1\",\"expected\":\"function hexToBytes(hex: string): Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function prepareReportRequest( hexEncodedPayload: Hex, reportEncoder?: Exclude ): ReportRequestJson\\\"};duplicate=1\",\"expected\":\"function prepareReportRequest( hexEncodedPayload: Hex, reportEncoder?: Exclude ): ReportRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"function protoBigIntToBigint(pb: ProtoBigInt): bigint\\\"};duplicate=1\",\"expected\":\"function protoBigIntToBigint(pb: ProtoBigInt): bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"getTransactionByHash( runtime: Runtime, input: GetTransactionByHashRequest | GetTransactionByHashRequestJson ): { result: () => GetTransactionByHashReply }\\\"};duplicate=1\",\"expected\":\"getTransactionByHash( runtime: Runtime, input: GetTransactionByHashRequest | GetTransactionByHashRequestJson ): { result: () => GetTransactionByHashReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"getTransactionReceipt( runtime: Runtime, input: GetTransactionReceiptRequest | GetTransactionReceiptRequestJson ): { result: () => GetTransactionReceiptReply }\\\"};duplicate=1\",\"expected\":\"getTransactionReceipt( runtime: Runtime, input: GetTransactionReceiptRequest | GetTransactionReceiptRequestJson ): { result: () => GetTransactionReceiptReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"headerByNumber( runtime: Runtime, input: HeaderByNumberRequest | HeaderByNumberRequestJson ): { result: () => HeaderByNumberReply }\\\"};duplicate=1\",\"expected\":\"headerByNumber( runtime: Runtime, input: HeaderByNumberRequest | HeaderByNumberRequestJson ): { result: () => HeaderByNumberReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { EVMClient, getNetwork, encodeCallMsg, bytesToHex, LAST_FINALIZED_BLOCK_NUMBER } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" import { encodeFunctionData, decodeFunctionResult, zeroAddress } from \\\\\\\"viem\\\\\\\" import { Storage } from \\\\\\\"../contracts/abi\\\\\\\" // Get network and instantiate client const network = getNetwork({ chainFamily: \\\\\\\"evm\\\\\\\", chainSelectorName: \\\\\\\"ethereum-testnet-sepolia\\\\\\\", }) const evmClient = new EVMClient(network.chainSelector.selector) // Encode the contract call data const callData = encodeFunctionData({ abi: Storage, functionName: \\\\\\\"get\\\\\\\", }) // Call the contract const contractCall = evmClient .callContract(runtime, { call: encodeCallMsg({ from: zeroAddress, // Required by encodeCallMsg. For view/pure functions, the sender doesn't matter. to: \\\\\\\"0x1234567890123456789012345678901234567890\\\\\\\", data: callData, }), blockNumber: LAST_FINALIZED_BLOCK_NUMBER, }) .result() // Decode the result const value = decodeFunctionResult({ abi: Storage, functionName: \\\\\\\"get\\\\\\\", data: bytesToHex(contractCall.data), })\\\"};duplicate=1\",\"expected\":\"import { EVMClient, getNetwork, encodeCallMsg, bytesToHex, LAST_FINALIZED_BLOCK_NUMBER } from \\\"@chainlink/cre-sdk\\\" import { encodeFunctionData, decodeFunctionResult, zeroAddress } from \\\"viem\\\" import { Storage } from \\\"../contracts/abi\\\" // Get network and instantiate client const network = getNetwork({ chainFamily: \\\"evm\\\", chainSelectorName: \\\"ethereum-testnet-sepolia\\\", }) const evmClient = new EVMClient(network.chainSelector.selector) // Encode the contract call data const callData = encodeFunctionData({ abi: Storage, functionName: \\\"get\\\", }) // Call the contract const contractCall = evmClient .callContract(runtime, { call: encodeCallMsg({ from: zeroAddress, // Required by encodeCallMsg. For view/pure functions, the sender doesn't matter. to: \\\"0x1234567890123456789012345678901234567890\\\", data: callData, }), blockNumber: LAST_FINALIZED_BLOCK_NUMBER, }) .result() // Decode the result const value = decodeFunctionResult({ abi: Storage, functionName: \\\"get\\\", data: bytesToHex(contractCall.data), })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { EVMClient, getNetwork, hexToBase64, bytesToHex } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" import { encodeFunctionData } from \\\\\\\"viem\\\\\\\" import { ReserveManager } from \\\\\\\"../contracts/abi\\\\\\\" // Encode the contract call data const callData = encodeFunctionData({ abi: ReserveManager, functionName: \\\\\\\"updateReserves\\\\\\\", args: [ { totalMinted: 100n, totalReserve: 50n, }, ], }) // Generate a signed report const reportResponse = runtime .report({ encodedPayload: hexToBase64(callData), encoderName: \\\\\\\"evm\\\\\\\", signingAlgo: \\\\\\\"ecdsa\\\\\\\", hashingAlgo: \\\\\\\"keccak256\\\\\\\", }) .result() // Submit the report onchain const writeResult = evmClient .writeReport(runtime, { receiver: \\\\\\\"0x1234567890123456789012345678901234567890\\\\\\\", report: reportResponse, gasConfig: { gasLimit: \\\\\\\"1000000\\\\\\\", }, }) .result() runtime.log(`Transaction hash: ${bytesToHex(writeResult.txHash || new Uint8Array(32))}`)\\\"};duplicate=1\",\"expected\":\"import { EVMClient, getNetwork, hexToBase64, bytesToHex } from \\\"@chainlink/cre-sdk\\\" import { encodeFunctionData } from \\\"viem\\\" import { ReserveManager } from \\\"../contracts/abi\\\" // Encode the contract call data const callData = encodeFunctionData({ abi: ReserveManager, functionName: \\\"updateReserves\\\", args: [ { totalMinted: 100n, totalReserve: 50n, }, ], }) // Generate a signed report const reportResponse = runtime .report({ encodedPayload: hexToBase64(callData), encoderName: \\\"evm\\\", signingAlgo: \\\"ecdsa\\\", hashingAlgo: \\\"keccak256\\\", }) .result() // Submit the report onchain const writeResult = evmClient .writeReport(runtime, { receiver: \\\"0x1234567890123456789012345678901234567890\\\", report: reportResponse, gasConfig: { gasLimit: \\\"1000000\\\", }, }) .result() runtime.log(`Transaction hash: ${bytesToHex(writeResult.txHash || new Uint8Array(32))}`)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { bigintToBytes } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" const bytes = bigintToBytes(256n) // → Uint8Array [1, 0]\\\"};duplicate=1\",\"expected\":\"import { bigintToBytes } from \\\"@chainlink/cre-sdk\\\" const bytes = bigintToBytes(256n) // → Uint8Array [1, 0]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { bigintToProtoBigInt } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" const protoBigInt = bigintToProtoBigInt(12345678n) // → { absVal: \\\\\\\"ALxhTg==\\\\\\\", sign: \\\\\\\"1\\\\\\\" } const negative = bigintToProtoBigInt(-42n) // → { absVal: \\\\\\\"Kg==\\\\\\\", sign: \\\\\\\"-1\\\\\\\" } const zero = bigintToProtoBigInt(0n) // → { absVal: \\\\\\\"\\\\\\\", sign: \\\\\\\"0\\\\\\\" }\\\"};duplicate=1\",\"expected\":\"import { bigintToProtoBigInt } from \\\"@chainlink/cre-sdk\\\" const protoBigInt = bigintToProtoBigInt(12345678n) // → { absVal: \\\"ALxhTg==\\\", sign: \\\"1\\\" } const negative = bigintToProtoBigInt(-42n) // → { absVal: \\\"Kg==\\\", sign: \\\"-1\\\" } const zero = bigintToProtoBigInt(0n) // → { absVal: \\\"\\\", sign: \\\"0\\\" }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { blockNumber, encodeCallMsg } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" import { zeroAddress } from \\\\\\\"viem\\\\\\\" // Read from a specific historical block const historicalBlock = 9767655n const contractCall = evmClient .callContract(runtime, { call: encodeCallMsg({ from: zeroAddress, to: contractAddress, data: callData, }), blockNumber: blockNumber(historicalBlock), }) .result()\\\"};duplicate=1\",\"expected\":\"import { blockNumber, encodeCallMsg } from \\\"@chainlink/cre-sdk\\\" import { zeroAddress } from \\\"viem\\\" // Read from a specific historical block const historicalBlock = 9767655n const contractCall = evmClient .callContract(runtime, { call: encodeCallMsg({ from: zeroAddress, to: contractAddress, data: callData, }), blockNumber: blockNumber(historicalBlock), }) .result()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { bytesToBigint } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" const value = bytesToBigint(new Uint8Array([1, 0])) // → 256n\\\"};duplicate=1\",\"expected\":\"import { bytesToBigint } from \\\"@chainlink/cre-sdk\\\" const value = bytesToBigint(new Uint8Array([1, 0])) // → 256n\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { encodeCallMsg } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" import { zeroAddress } from \\\\\\\"viem\\\\\\\" const callMsg = encodeCallMsg({ from: zeroAddress, to: \\\\\\\"0x1234567890123456789012345678901234567890\\\\\\\", data: \\\\\\\"0xabcdef\\\\\\\", })\\\"};duplicate=1\",\"expected\":\"import { encodeCallMsg } from \\\"@chainlink/cre-sdk\\\" import { zeroAddress } from \\\"viem\\\" const callMsg = encodeCallMsg({ from: zeroAddress, to: \\\"0x1234567890123456789012345678901234567890\\\", data: \\\"0xabcdef\\\", })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { hexToBase64, type Runtime } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" // Without the helper, you must specify all parameters manually const report = runtime .report({ encodedPayload: hexToBase64(callData), encoderName: \\\\\\\"evm\\\\\\\", signingAlgo: \\\\\\\"ecdsa\\\\\\\", hashingAlgo: \\\\\\\"keccak256\\\\\\\", }) .result()\\\"};duplicate=1\",\"expected\":\"import { hexToBase64, type Runtime } from \\\"@chainlink/cre-sdk\\\" // Without the helper, you must specify all parameters manually const report = runtime .report({ encodedPayload: hexToBase64(callData), encoderName: \\\"evm\\\", signingAlgo: \\\"ecdsa\\\", hashingAlgo: \\\"keccak256\\\", }) .result()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { hexToBytes } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" const bytes = hexToBytes(\\\\\\\"0xabcdef\\\\\\\") // → Uint8Array [171, 205, 239]\\\"};duplicate=1\",\"expected\":\"import { hexToBytes } from \\\"@chainlink/cre-sdk\\\" const bytes = hexToBytes(\\\"0xabcdef\\\") // → Uint8Array [171, 205, 239]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { prepareReportRequest, type Runtime } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" import { encodeFunctionData } from \\\\\\\"viem\\\\\\\" import { MyContractABI } from \\\\\\\"./abi\\\\\\\" // Encode the function call data const callData = encodeFunctionData({ abi: MyContractABI, functionName: \\\\\\\"updateValue\\\\\\\", args: [42n], }) // Generate a signed report using the helper (simplest approach) const report = runtime.report(prepareReportRequest(callData)).result() // The helper automatically sets: // - encodedPayload: hexToBase64(callData) // - encoderName: \\\\\\\"evm\\\\\\\" // - signingAlgo: \\\\\\\"ecdsa\\\\\\\" // - hashingAlgo: \\\\\\\"keccak256\\\\\\\"\\\"};duplicate=1\",\"expected\":\"import { prepareReportRequest, type Runtime } from \\\"@chainlink/cre-sdk\\\" import { encodeFunctionData } from \\\"viem\\\" import { MyContractABI } from \\\"./abi\\\" // Encode the function call data const callData = encodeFunctionData({ abi: MyContractABI, functionName: \\\"updateValue\\\", args: [42n], }) // Generate a signed report using the helper (simplest approach) const report = runtime.report(prepareReportRequest(callData)).result() // The helper automatically sets: // - encodedPayload: hexToBase64(callData) // - encoderName: \\\"evm\\\" // - signingAlgo: \\\"ecdsa\\\" // - hashingAlgo: \\\"keccak256\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { protoBigIntToBigint } from \\\\\\\"@chainlink/cre-sdk\\\\\\\" // Get the latest block number from the blockchain const latestHeader = evmClient.headerByNumber(runtime, {}).result() // Convert the protobuf BigInt to a native bigint for arithmetic const latestBlockNum = protoBigIntToBigint(latestHeader.header.blockNumber) const customBlock = latestBlockNum - 500n // Now you can do arithmetic // latestBlockNum → e.g., 12345678n // customBlock → e.g., 12345178n (500 blocks earlier)\\\"};duplicate=1\",\"expected\":\"import { protoBigIntToBigint } from \\\"@chainlink/cre-sdk\\\" // Get the latest block number from the blockchain const latestHeader = evmClient.headerByNumber(runtime, {}).result() // Convert the protobuf BigInt to a native bigint for arithmetic const latestBlockNum = protoBigIntToBigint(latestHeader.header.blockNumber) const customBlock = latestBlockNum - 500n // Now you can do arithmetic // latestBlockNum → e.g., 12345678n // customBlock → e.g., 12345178n (500 blocks earlier)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"interface EncodeCallMsgPayload { from: Address // viem Address type (0x-prefixed hex string) to: Address data: Hex // viem Hex type (0x-prefixed hex string) }\\\"};duplicate=1\",\"expected\":\"interface EncodeCallMsgPayload { from: Address // viem Address type (0x-prefixed hex string) to: Address data: Hex // viem Hex type (0x-prefixed hex string) }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"registerLogTracking( runtime: Runtime, input: RegisterLogTrackingRequest | RegisterLogTrackingRequestJson ): { result: () => Empty }\\\"};duplicate=1\",\"expected\":\"registerLogTracking( runtime: Runtime, input: RegisterLogTrackingRequest | RegisterLogTrackingRequestJson ): { result: () => Empty }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"unregisterLogTracking( runtime: Runtime, input: UnregisterLogTrackingRequest | UnregisterLogTrackingRequestJson ): { result: () => Empty }\\\"};duplicate=1\",\"expected\":\"unregisterLogTracking( runtime: Runtime, input: UnregisterLogTrackingRequest | UnregisterLogTrackingRequestJson ): { result: () => Empty }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"writeReport( runtime: Runtime, input: WriteCreReportRequest | WriteCreReportRequestJson ): { result: () => WriteReportReply }\\\"};duplicate=1\",\"expected\":\"writeReport( runtime: Runtime, input: WriteCreReportRequest | WriteCreReportRequestJson ): { result: () => WriteReportReply }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BalanceAtReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"BalanceAtReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"BalanceAtRequest / BalanceAtRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"BalanceAtRequest / BalanceAtRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallContractReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"CallContractReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"CallMsg / CallMsgJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"CallMsg / CallMsgJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EstimateGasReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"EstimateGasReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"EstimateGasRequest / EstimateGasRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"EstimateGasRequest / EstimateGasRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FilterLogsReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"FilterLogsReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"FilterLogsRequest / FilterLogsRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"FilterLogsRequest / FilterLogsRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GasConfig / GasConfigJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"GasConfig / GasConfigJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GetTransactionByHashReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"GetTransactionByHashReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GetTransactionByHashRequest / GetTransactionByHashRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"GetTransactionByHashRequest / GetTransactionByHashRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GetTransactionReceiptReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"GetTransactionReceiptReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"GetTransactionReceiptRequest / GetTransactionReceiptRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"GetTransactionReceiptRequest / GetTransactionReceiptRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Header type\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Header type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"HeaderByNumberReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"HeaderByNumberReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"HeaderByNumberRequest / HeaderByNumberRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"HeaderByNumberRequest / HeaderByNumberRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Helper functions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Helper functions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"LAST_FINALIZED_BLOCK_NUMBER\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"LAST_FINALIZED_BLOCK_NUMBER\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Log tracking methods\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Log tracking methods\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Log type\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Log type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Receipt type\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Receipt type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"RegisterLogTrackingRequest / RegisterLogTrackingRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"RegisterLogTrackingRequest / RegisterLogTrackingRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Transaction type\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Transaction type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"TxStatus enum\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"TxStatus enum\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"UnregisterLogTrackingRequest / UnregisterLogTrackingRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"UnregisterLogTrackingRequest / UnregisterLogTrackingRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Usage example\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Usage example\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Usage example\\\",\\\"depth\\\":4};duplicate=2\",\"expected\":\"Usage example\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Write methods\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Write methods\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"WriteCreReportRequest / WriteCreReportRequestJson\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"WriteCreReportRequest / WriteCreReportRequestJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"WriteReportReply\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"WriteReportReply\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"balanceAt()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"balanceAt()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"bigintToBytes()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"bigintToBytes()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"bigintToProtoBigInt()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"bigintToProtoBigInt()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"blockNumber()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"blockNumber()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"bytesToBigint()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"bytesToBigint()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"bytesToHex()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"bytesToHex()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"encodeCallMsg()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"encodeCallMsg()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"estimateGas()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"estimateGas()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"filterLogs()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"filterLogs()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTransactionByHash()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTransactionByHash()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"getTransactionReceipt()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"getTransactionReceipt()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"headerByNumber()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"headerByNumber()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"hexToBase64()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"hexToBase64()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"hexToBytes()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"hexToBytes()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"prepareReportRequest()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"prepareReportRequest()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"protoBigIntToBigint()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"protoBigIntToBigint()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"registerLogTracking()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"registerLogTracking()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"unregisterLogTracking()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"unregisterLogTracking()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"writeReport()\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"writeReport()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Custom Block Depths\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\\\"};duplicate=1\",\"expected\":\"Custom Block Depths -> /cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Custom Block Depths\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\\\"};duplicate=2\",\"expected\":\"Custom Block Depths -> /cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Custom Block Depths\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\\\"};duplicate=3\",\"expected\":\"Custom Block Depths -> /cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Custom Block Depths\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\\\"};duplicate=4\",\"expected\":\"Custom Block Depths -> /cre/guides/workflow/using-evm-client/onchain-read-ts#custom-block-depths\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Finality and Confidence Levels\\\",\\\"url\\\":\\\"/cre/concepts/finality-ts\\\"};duplicate=1\",\"expected\":\"Finality and Confidence Levels -> /cre/concepts/finality-ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Finality and Confidence Levels\\\",\\\"url\\\":\\\"/cre/concepts/finality-ts\\\"};duplicate=2\",\"expected\":\"Finality and Confidence Levels -> /cre/concepts/finality-ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Finality and Confidence Levels\\\",\\\"url\\\":\\\"/cre/concepts/finality-ts\\\"};duplicate=3\",\"expected\":\"Finality and Confidence Levels -> /cre/concepts/finality-ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Type Conversions\\\",\\\"url\\\":\\\"/cre/reference/sdk/type-conversions-ts#protobigint\\\"};duplicate=1\",\"expected\":\"Type Conversions -> /cre/reference/sdk/type-conversions-ts#protobigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"blockNumber()\\\",\\\"url\\\":\\\"#blocknumber\\\"};duplicate=1\",\"expected\":\"blockNumber() -> #blocknumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). See\\\"};duplicate=1\",\"expected\":\"). See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"). See\\\"};duplicate=2\",\"expected\":\"). See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A BigIntJson object in the protobuf format expected by SDK methods.\\\"};duplicate=1\",\"expected\":\"A BigIntJson object in the protobuf format expected by SDK methods.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A BigIntJson object with absVal (base64-encoded big-endian bytes) and sign (\\\\\\\"1\\\\\\\", \\\\\\\"0\\\\\\\", or \\\\\\\"-1\\\\\\\").\\\"};duplicate=1\",\"expected\":\"A BigIntJson object with absVal (base64-encoded big-endian bytes) and sign (\\\"1\\\", \\\"0\\\", or \\\"-1\\\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A ReportRequestJson object ready to pass to runtime.report().\\\"};duplicate=1\",\"expected\":\"A ReportRequestJson object ready to pass to runtime.report().\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A constant representing the last finalized block number for use in callContract() and similar methods.\\\"};duplicate=1\",\"expected\":\"A constant representing the last finalized block number for use in callContract() and similar methods.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A native JavaScript bigint value.\\\"};duplicate=1\",\"expected\":\"A native JavaScript bigint value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A struct defining the filters for the log query, such as block range, addresses, and topics.\\\"};duplicate=1\",\"expected\":\"A struct defining the filters for the log query, such as block range, addresses, and topics.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A struct defining the persistent log filter, including rate limits and retention policies.\\\"};duplicate=1\",\"expected\":\"A struct defining the persistent log filter, including rate limits and retention policies.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"An array of indexed log fields (32-byte arrays).\\\"};duplicate=1\",\"expected\":\"An array of indexed log fields (32-byte arrays).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"An array of log objects emitted by the transaction.\\\"};duplicate=1\",\"expected\":\"An array of log objects emitted by the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"An array of log objects that match the filter query.\\\"};duplicate=1\",\"expected\":\"An array of log objects that match the filter query.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"An error message if the transaction failed (optional).\\\"};duplicate=1\",\"expected\":\"An error message if the transaction failed (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BigIntJson\\\"};duplicate=1\",\"expected\":\"BigIntJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BigIntJson\\\"};duplicate=2\",\"expected\":\"BigIntJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CallMsgJson\\\"};duplicate=1\",\"expected\":\"CallMsgJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a 0x-prefixed hex string to a Uint8Array.\\\"};duplicate=1\",\"expected\":\"Converts a 0x-prefixed hex string to a Uint8Array.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a 0x-prefixed hex string to a base64-encoded string. This is useful for preparing data for protobuf structures.\\\"};duplicate=1\",\"expected\":\"Converts a 0x-prefixed hex string to a base64-encoded string. This is useful for preparing data for protobuf structures.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a Uint8Array to a 0x-prefixed hex string.\\\"};duplicate=1\",\"expected\":\"Converts a Uint8Array to a 0x-prefixed hex string.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a big-endian Uint8Array to a native JavaScript bigint. This is the inverse of bigintToBytes().\\\"};duplicate=1\",\"expected\":\"Converts a big-endian Uint8Array to a native JavaScript bigint. This is the inverse of bigintToBytes().\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a native JavaScript bigint to a big-endian Uint8Array. This is useful when you need to encode a bigint as raw bytes for protobuf fields or ABI encoding.\\\"};duplicate=1\",\"expected\":\"Converts a native JavaScript bigint to a big-endian Uint8Array. This is useful when you need to encode a bigint as raw bytes for protobuf fields or ABI encoding.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a native bigint, number, or string to the protobuf BigInt JSON format required by SDK methods. This is a convenience alias for bigintToProtoBigInt. Use this when specifying an explicit block height for contract calls or other blockchain queries.\\\"};duplicate=1\",\"expected\":\"Converts a native bigint, number, or string to the protobuf BigInt JSON format required by SDK methods. This is a convenience alias for bigintToProtoBigInt. Use this when specifying an explicit block height for contract calls or other blockchain queries.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a native bigint, number, or string to the protobuf BigIntJson format used by SDK methods. The\\\"};duplicate=1\",\"expected\":\"Converts a native bigint, number, or string to the protobuf BigIntJson format used by SDK methods. The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Converts a protobuf BigInt (returned by SDK methods like headerByNumber) to a native JavaScript bigint. Use this when you need to perform arithmetic on block numbers or other numeric values returned from the blockchain.\\\"};duplicate=1\",\"expected\":\"Converts a protobuf BigInt (returned by SDK methods like headerByNumber) to a native JavaScript bigint. Use this when you need to perform arithmetic on block numbers or other numeric values returned from the blockchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Creates a persistent filter to track specific logs over time. This is a \\\\\\\"fire-and-forget\\\\\\\" operation that returns an empty result.\\\"};duplicate=1\",\"expected\":\"Creates a persistent filter to track specific logs over time. This is a \\\"fire-and-forget\\\" operation that returns an empty result.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=10\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=11\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=12\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=13\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=14\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=15\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=16\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=17\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=18\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=19\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=2\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=20\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=21\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=22\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=23\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=3\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=4\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=5\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=6\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=7\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=8\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=9\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Encodes a call message payload into a CallMsgJson, expected by the EVM capability.\\\"};duplicate=1\",\"expected\":\"Encodes a call message payload into a CallMsgJson, expected by the EVM capability.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Equivalent manual approach:\\\"};duplicate=1\",\"expected\":\"Equivalent manual approach:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Estimates the gas required to execute a specific transaction. This method returns an object with a .result() method that blocks until the estimation completes.\\\"};duplicate=1\",\"expected\":\"Estimates the gas required to execute a specific transaction. This method returns an object with a .result() method that blocks until the estimation completes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Executes a state-changing transaction by submitting a cryptographically signed report to a designated receiver contract. This is the primary method for writing data onchain in CRE workflows.\\\"};duplicate=1\",\"expected\":\"Executes a state-changing transaction by submitting a cryptographically signed report to a designated receiver contract. This is the primary method for writing data onchain in CRE workflows.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fetches the receipt for a transaction given its hash. This method returns an object with a .result() method that blocks until the receipt is retrieved.\\\"};duplicate=1\",\"expected\":\"Fetches the receipt for a transaction given its hash. This method returns an object with a .result() method that blocks until the receipt is retrieved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=1\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=10\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=11\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=12\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=13\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=14\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=15\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=16\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=17\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=18\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=19\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=2\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=20\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=21\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=22\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=23\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=3\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=4\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=5\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=6\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=7\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=8\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Field\\\"};duplicate=9\",\"expected\":\"Field\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"FilterQueryJson\\\"};duplicate=1\",\"expected\":\"FilterQueryJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gas limit configuration for the transaction.\\\"};duplicate=1\",\"expected\":\"Gas limit configuration for the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"GasConfigJson\\\"};duplicate=1\",\"expected\":\"GasConfigJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Header\\\"};duplicate=1\",\"expected\":\"Header\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LPFilterJson\\\"};duplicate=1\",\"expected\":\"LPFilterJson\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log[]\\\"};duplicate=1\",\"expected\":\"Log[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log[]\\\"};duplicate=2\",\"expected\":\"Log[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=3\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Non-indexed log data.\\\"};duplicate=1\",\"expected\":\"Non-indexed log data.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters:\\\"};duplicate=1\",\"expected\":\"Parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters:\\\"};duplicate=2\",\"expected\":\"Parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameters:\\\"};duplicate=3\",\"expected\":\"Parameters:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Prepares a report request with default EVM encoding parameters for use with runtime.report(). This helper simplifies report generation by automatically setting the standard encoding configuration (evm, ecdsa, keccak256) required for EVM-based workflows.\\\"};duplicate=1\",\"expected\":\"Prepares a report request with default EVM encoding parameters for use with runtime.report(). This helper simplifies report generation by automatically setting the standard encoding configuration (evm, ecdsa, keccak256) required for EVM-based workflows.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Queries historical event logs that match a specific set of filter criteria. This method returns an object with a .result() method that blocks until the query completes.\\\"};duplicate=1\",\"expected\":\"Queries historical event logs that match a specific set of filter criteria. This method returns an object with a .result() method that blocks until the query completes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Receipt\\\"};duplicate=1\",\"expected\":\"Receipt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ReceiverContractExecutionStatus\\\"};duplicate=1\",\"expected\":\"ReceiverContractExecutionStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Removes a previously registered log tracking filter. This is a \\\\\\\"fire-and-forget\\\\\\\" operation that returns an empty result.\\\"};duplicate=1\",\"expected\":\"Removes a previously registered log tracking filter. This is a \\\"fire-and-forget\\\" operation that returns an empty result.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report\\\"};duplicate=1\",\"expected\":\"Report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=1\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=10\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=2\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=3\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=4\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=5\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=6\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=7\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=8\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required\\\"};duplicate=9\",\"expected\":\"Required\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves a block header by its number. This method returns an object with a .result() method that blocks until the header is retrieved.\\\"};duplicate=1\",\"expected\":\"Retrieves a block header by its number. This method returns an object with a .result() method that blocks until the header is retrieved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves a transaction by its hash. This method returns an object with a .result() method that blocks until the transaction is retrieved.\\\"};duplicate=1\",\"expected\":\"Retrieves a transaction by its hash. This method returns an object with a .result() method that blocks until the transaction is retrieved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retrieves the native token balance for a specific account. This method returns an object with a .result() method that blocks until the balance is retrieved.\\\"};duplicate=1\",\"expected\":\"Retrieves the native token balance for a specific account. This method returns an object with a .result() method that blocks until the balance is retrieved.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns:\\\"};duplicate=1\",\"expected\":\"Returns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns:\\\"};duplicate=2\",\"expected\":\"Returns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns:\\\"};duplicate=3\",\"expected\":\"Returns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Returns:\\\"};duplicate=4\",\"expected\":\"Returns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See\\\"};duplicate=1\",\"expected\":\"See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See\\\"};duplicate=2\",\"expected\":\"See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See\\\"};duplicate=3\",\"expected\":\"See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=1\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=10\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=11\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=12\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=13\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=2\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=3\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=4\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=5\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=6\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=7\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=8\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Signature:\\\"};duplicate=9\",\"expected\":\"Signature:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TIP: When to use this helper\\\"};duplicate=1\",\"expected\":\"TIP: When to use this helper\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TX_STATUS_FATAL: A fatal error occurred.\\\"};duplicate=1\",\"expected\":\"TX_STATUS_FATAL: A fatal error occurred.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TX_STATUS_REVERTED: The transaction reverted.\\\"};duplicate=1\",\"expected\":\"TX_STATUS_REVERTED: The transaction reverted.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TX_STATUS_SUCCESS: The transaction was successful.\\\"};duplicate=1\",\"expected\":\"TX_STATUS_SUCCESS: The transaction was successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 20-byte address of the account to query (hex string).\\\"};duplicate=1\",\"expected\":\"The 20-byte address of the account to query (hex string).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 20-byte address of the contract that emitted the log.\\\"};duplicate=1\",\"expected\":\"The 20-byte address of the contract that emitted the log.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 20-byte address of the receiver contract to call (hex string).\\\"};duplicate=1\",\"expected\":\"The 20-byte address of the receiver contract to call (hex string).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 20-byte address of the recipient.\\\"};duplicate=1\",\"expected\":\"The 20-byte address of the recipient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 20-byte address of the sender (hex string). For view/pure functions, use zeroAddress from viem as the sender doesn't typically matter.\\\"};duplicate=1\",\"expected\":\"The 20-byte address of the sender (hex string). For view/pure functions, use zeroAddress from viem as the sender doesn't typically matter.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 20-byte address of the target contract (hex string).\\\"};duplicate=1\",\"expected\":\"The 20-byte address of the target contract (hex string).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte block hash.\\\"};duplicate=1\",\"expected\":\"The 32-byte block hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte block hash.\\\"};duplicate=2\",\"expected\":\"The 32-byte block hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte block hash.\\\"};duplicate=3\",\"expected\":\"The 32-byte block hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte hash of the parent block.\\\"};duplicate=1\",\"expected\":\"The 32-byte hash of the parent block.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte hash of the transaction (hex string).\\\"};duplicate=1\",\"expected\":\"The 32-byte hash of the transaction (hex string).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte hash of the transaction to look up (hex string).\\\"};duplicate=1\",\"expected\":\"The 32-byte hash of the transaction to look up (hex string).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte transaction hash of the onchain submission (optional).\\\"};duplicate=1\",\"expected\":\"The 32-byte transaction hash of the onchain submission (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte transaction hash.\\\"};duplicate=1\",\"expected\":\"The 32-byte transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte transaction hash.\\\"};duplicate=2\",\"expected\":\"The 32-byte transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The 32-byte transaction hash.\\\"};duplicate=3\",\"expected\":\"The 32-byte transaction hash.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ABI-encoded data returned by the contract call.\\\"};duplicate=1\",\"expected\":\"The ABI-encoded data returned by the contract call.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The ABI-encoded function call data (hex string), including the function selector and arguments.\\\"};duplicate=1\",\"expected\":\"The ABI-encoded function call data (hex string), including the function selector and arguments.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The TypeScript SDK provides several helper functions for working with the EVM Client.\\\"};duplicate=1\",\"expected\":\"The TypeScript SDK provides several helper functions for working with the EVM Client.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Unix timestamp of the block.\\\"};duplicate=1\",\"expected\":\"The Unix timestamp of the block.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual gas price paid per gas unit (optional).\\\"};duplicate=1\",\"expected\":\"The actual gas price paid per gas unit (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The address of the deployed contract (if applicable).\\\"};duplicate=1\",\"expected\":\"The address of the deployed contract (if applicable).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The amount of gas used by the transaction.\\\"};duplicate=1\",\"expected\":\"The amount of gas used by the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The balance of the account in Wei.\\\"};duplicate=1\",\"expected\":\"The balance of the account in Wei.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block header object, if found.\\\"};duplicate=1\",\"expected\":\"The block header object, if found.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block number (optional).\\\"};duplicate=1\",\"expected\":\"The block number (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block number to query. Accepts LATEST_BLOCK_NUMBER (default), LAST_FINALIZED_BLOCK_NUMBER, or a BigIntJson object for an explicit block height (see\\\"};duplicate=1\",\"expected\":\"The block number to query. Accepts LATEST_BLOCK_NUMBER (default), LAST_FINALIZED_BLOCK_NUMBER, or a BigIntJson object for an explicit block height (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block number to query. Accepts:\\\"};duplicate=1\",\"expected\":\"The block number to query. Accepts:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block number where the log was emitted (optional).\\\"};duplicate=1\",\"expected\":\"The block number where the log was emitted (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block number where the transaction was included (optional).\\\"};duplicate=1\",\"expected\":\"The block number where the transaction was included (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The estimated amount of gas in gas units.\\\"};duplicate=1\",\"expected\":\"The estimated amount of gas in gas units.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The final status of the transaction: TX_STATUS_SUCCESS, TX_STATUS_REVERTED, or TX_STATUS_FATAL.\\\"};duplicate=1\",\"expected\":\"The final status of the transaction: TX_STATUS_SUCCESS, TX_STATUS_REVERTED, or TX_STATUS_FATAL.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The gas limit for the transaction.\\\"};duplicate=1\",\"expected\":\"The gas limit for the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The gas limit.\\\"};duplicate=1\",\"expected\":\"The gas limit.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The gas price in Wei.\\\"};duplicate=1\",\"expected\":\"The gas price in Wei.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The index of the log within the transaction.\\\"};duplicate=1\",\"expected\":\"The index of the log within the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The index of the transaction within the block.\\\"};duplicate=1\",\"expected\":\"The index of the transaction within the block.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The index of the transaction within the block.\\\"};duplicate=2\",\"expected\":\"The index of the transaction within the block.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The nonce of the transaction.\\\"};duplicate=1\",\"expected\":\"The nonce of the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The number of the block to retrieve. Accepts undefined for latest (default), LATEST_BLOCK_NUMBER, LAST_FINALIZED_BLOCK_NUMBER, or a BigIntJson object for an explicit block height (see\\\"};duplicate=1\",\"expected\":\"The number of the block to retrieve. Accepts undefined for latest (default), LATEST_BLOCK_NUMBER, LAST_FINALIZED_BLOCK_NUMBER, or a BigIntJson object for an explicit block height (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The report object generated by runtime.report().\\\"};duplicate=1\",\"expected\":\"The report object generated by runtime.report().\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The status of the receiver contract's execution: RECEIVER_CONTRACT_EXECUTION_STATUS_SUCCESS or RECEIVER_CONTRACT_EXECUTION_STATUS_REVERTED (optional).\\\"};duplicate=1\",\"expected\":\"The status of the receiver contract's execution: RECEIVER_CONTRACT_EXECUTION_STATUS_SUCCESS or RECEIVER_CONTRACT_EXECUTION_STATUS_REVERTED (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The total fee paid for the transaction in Wei (optional).\\\"};duplicate=1\",\"expected\":\"The total fee paid for the transaction in Wei (optional).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The transaction data payload.\\\"};duplicate=1\",\"expected\":\"The transaction data payload.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The transaction message to simulate for gas estimation.\\\"};duplicate=1\",\"expected\":\"The transaction message to simulate for gas estimation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The transaction object, if found.\\\"};duplicate=1\",\"expected\":\"The transaction object, if found.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The transaction receipt object, if found.\\\"};duplicate=1\",\"expected\":\"The transaction receipt object, if found.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique name of the filter to remove.\\\"};duplicate=1\",\"expected\":\"The unique name of the filter to remove.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The value transferred in Wei.\\\"};duplicate=1\",\"expected\":\"The value transferred in Wei.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"These methods manage stateful log tracking subscriptions.\\\"};duplicate=1\",\"expected\":\"These methods manage stateful log tracking subscriptions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This is the object returned by .result() when the callContract() method successfully completes.\\\"};duplicate=1\",\"expected\":\"This is the object returned by .result() when the callContract() method successfully completes.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This struct contains the core details of your onchain call.\\\"};duplicate=1\",\"expected\":\"This struct contains the core details of your onchain call.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transaction status: 1 for success, 0 for failure.\\\"};duplicate=1\",\"expected\":\"Transaction status: 1 for success, 0 for failure.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transaction\\\"};duplicate=1\",\"expected\":\"Transaction\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TxStatus\\\"};duplicate=1\",\"expected\":\"TxStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=10\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=11\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=12\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=13\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=14\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=15\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=16\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=17\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=18\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=19\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=2\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=20\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=21\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=22\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=23\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=3\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=4\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=5\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=6\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=7\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=8\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=9\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array[]\\\"};duplicate=1\",\"expected\":\"Uint8Array[]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=1\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=10\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=11\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=12\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=13\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=14\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=2\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=3\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=4\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=5\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=6\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=7\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=8\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Uint8Array\\\"};duplicate=9\",\"expected\":\"Uint8Array\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=1\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=2\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=3\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=4\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=5\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=6\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Usage:\\\"};duplicate=7\",\"expected\":\"Usage:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Use prepareReportRequest() for all EVM write operations to reduce boilerplate and ensure consistent encoding parameters. It's particularly useful in workflows with multiple write operations, as it eliminates repetitive configuration.\\\"};duplicate=1\",\"expected\":\"Use prepareReportRequest() for all EVM write operations to reduce boilerplate and ensure consistent encoding parameters. It's particularly useful in workflows with multiple write operations, as it eliminates repetitive configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=1\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=10\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=11\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=12\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=2\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=3\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=4\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=5\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=6\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=7\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=8\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Yes\\\"};duplicate=9\",\"expected\":\"Yes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"account\\\"};duplicate=1\",\"expected\":\"account\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"address\\\"};duplicate=1\",\"expected\":\"address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"balance\\\"};duplicate=1\",\"expected\":\"balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=1\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=10\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=11\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=12\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=13\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=14\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=15\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=2\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=3\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=4\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=5\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=6\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=7\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=8\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bigint\\\"};duplicate=9\",\"expected\":\"bigint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockHash\\\"};duplicate=1\",\"expected\":\"blockHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockHash\\\"};duplicate=2\",\"expected\":\"blockHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockNumber\\\"};duplicate=1\",\"expected\":\"blockNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockNumber\\\"};duplicate=2\",\"expected\":\"blockNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockNumber\\\"};duplicate=3\",\"expected\":\"blockNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockNumber\\\"};duplicate=4\",\"expected\":\"blockNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"blockNumber\\\"};duplicate=5\",\"expected\":\"blockNumber\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"boolean\\\"};duplicate=1\",\"expected\":\"boolean\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contractAddress\\\"};duplicate=1\",\"expected\":\"contractAddress\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=1\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=2\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=3\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"data\\\"};duplicate=4\",\"expected\":\"data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"effectiveGasPrice\\\"};duplicate=1\",\"expected\":\"effectiveGasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"errorMessage\\\"};duplicate=1\",\"expected\":\"errorMessage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"filterName\\\"};duplicate=1\",\"expected\":\"filterName\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"filterQuery\\\"};duplicate=1\",\"expected\":\"filterQuery\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"filter\\\"};duplicate=1\",\"expected\":\"filter\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a complete example.\\\"};duplicate=1\",\"expected\":\"for a complete example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a complete example.\\\"};duplicate=2\",\"expected\":\"for a complete example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for conversion details).\\\"};duplicate=1\",\"expected\":\"for conversion details).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for finality strategies.\\\"};duplicate=1\",\"expected\":\"for finality strategies.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for more details on the ProtoBigInt format.\\\"};duplicate=1\",\"expected\":\"for more details on the ProtoBigInt format.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from\\\"};duplicate=1\",\"expected\":\"from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function is a convenience alias for this function.\\\"};duplicate=1\",\"expected\":\"function is a convenience alias for this function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasConfig\\\"};duplicate=1\",\"expected\":\"gasConfig\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasLimit\\\"};duplicate=1\",\"expected\":\"gasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPrice\\\"};duplicate=1\",\"expected\":\"gasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasUsed\\\"};duplicate=1\",\"expected\":\"gasUsed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gas\\\"};duplicate=1\",\"expected\":\"gas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gas\\\"};duplicate=2\",\"expected\":\"gas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hash\\\"};duplicate=1\",\"expected\":\"hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hash\\\"};duplicate=2\",\"expected\":\"hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hash\\\"};duplicate=3\",\"expected\":\"hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hash\\\"};duplicate=4\",\"expected\":\"hash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"header\\\"};duplicate=1\",\"expected\":\"header\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"hexEncodedPayload: The hex-encoded payload (typically from encodeFunctionData()) to be signed by the DON\\\"};duplicate=1\",\"expected\":\"hexEncodedPayload: The hex-encoded payload (typically from encodeFunctionData()) to be signed by the DON\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"index\\\"};duplicate=1\",\"expected\":\"index\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"logs\\\"};duplicate=1\",\"expected\":\"logs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"logs\\\"};duplicate=2\",\"expected\":\"logs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"msg\\\"};duplicate=1\",\"expected\":\"msg\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"n: The block number as a native bigint, number, or string\\\"};duplicate=1\",\"expected\":\"n: The block number as a native bigint, number, or string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nonce\\\"};duplicate=1\",\"expected\":\"nonce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"number\\\"};duplicate=1\",\"expected\":\"number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"number\\\"};duplicate=2\",\"expected\":\"number\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"parentHash\\\"};duplicate=1\",\"expected\":\"parentHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"pb: A protobuf BigInt object with absVal (Uint8Array) and sign (bigint) fields\\\"};duplicate=1\",\"expected\":\"pb: A protobuf BigInt object with absVal (Uint8Array) and sign (bigint) fields\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receipt\\\"};duplicate=1\",\"expected\":\"receipt\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiverContractExecutionStatus\\\"};duplicate=1\",\"expected\":\"receiverContractExecutionStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"receiver\\\"};duplicate=1\",\"expected\":\"receiver\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"removed\\\"};duplicate=1\",\"expected\":\"removed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"reportEncoder: Optional. Custom report encoder configuration. Defaults to EVM_DEFAULT_REPORT_ENCODER ({ encoderName: 'evm', signingAlgo: 'ecdsa', hashingAlgo: 'keccak256' })\\\"};duplicate=1\",\"expected\":\"reportEncoder: Optional. Custom report encoder configuration. Defaults to EVM_DEFAULT_REPORT_ENCODER ({ encoderName: 'evm', signingAlgo: 'ecdsa', hashingAlgo: 'keccak256' })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"report\\\"};duplicate=1\",\"expected\":\"report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"status\\\"};duplicate=1\",\"expected\":\"status\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=1\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=10\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=2\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=3\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=4\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=5\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=6\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=7\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=8\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"string\\\"};duplicate=9\",\"expected\":\"string\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp\\\"};duplicate=1\",\"expected\":\"timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=1\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to\\\"};duplicate=2\",\"expected\":\"to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"topics\\\"};duplicate=1\",\"expected\":\"topics\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"transactionFee\\\"};duplicate=1\",\"expected\":\"transactionFee\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"transaction\\\"};duplicate=1\",\"expected\":\"transaction\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true if the log was removed due to a chain reorganization.\\\"};duplicate=1\",\"expected\":\"true if the log was removed due to a chain reorganization.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"txHash\\\"};duplicate=1\",\"expected\":\"txHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"txHash\\\"};duplicate=2\",\"expected\":\"txHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"txHash\\\"};duplicate=3\",\"expected\":\"txHash\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"txIndex\\\"};duplicate=1\",\"expected\":\"txIndex\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"txIndex\\\"};duplicate=2\",\"expected\":\"txIndex\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"txStatus\\\"};duplicate=1\",\"expected\":\"txStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"value\\\"};duplicate=1\",\"expected\":\"value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• BigIntJson object: an explicit block height (see\\\"};duplicate=1\",\"expected\":\"• BigIntJson object: an explicit block height (see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• LAST_FINALIZED_BLOCK_NUMBER: a finalized block\\\"};duplicate=1\",\"expected\":\"• LAST_FINALIZED_BLOCK_NUMBER: a finalized block\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"• LATEST_BLOCK_NUMBER (default): the most recent block\\\"};duplicate=1\",\"expected\":\"• LATEST_BLOCK_NUMBER (default): the most recent block\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/evm-client-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/overview-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"viem\\\"};duplicate=1\",\"expected\":\"viem\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/overview-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block confirmation level to monitor. Can be:\\\"};duplicate=1\",\"expected\":\"The block confirmation level to monitor. Can be:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"evm.ConfidenceLevel_CONFIDENCE_LEVEL_FINALIZED: A block that is considered irreversible. This is the safest option, as the event is guaranteed to be on the canonical chain, but it requires waiting longer for finality.\\\"};duplicate=1\",\"expected\":\"evm.ConfidenceLevel_CONFIDENCE_LEVEL_FINALIZED: A block that is considered irreversible. This is the safest option, as the event is guaranteed to be on the canonical chain, but it requires waiting longer for finality.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"evm.ConfidenceLevel_CONFIDENCE_LEVEL_LATEST: The most recent block. This is the fastest but least secure, as the block could be orphaned. Best for non-critical, time-sensitive actions.\\\"};duplicate=1\",\"expected\":\"evm.ConfidenceLevel_CONFIDENCE_LEVEL_LATEST: The most recent block. This is the fastest but least secure, as the block could be orphaned. Best for non-critical, time-sensitive actions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"evm.ConfidenceLevel_CONFIDENCE_LEVEL_SAFE (default): A block that is considered unlikely to be reorged but is not yet irreversible.\\\"};duplicate=1\",\"expected\":\"evm.ConfidenceLevel_CONFIDENCE_LEVEL_SAFE (default): A block that is considered unlikely to be reorged but is not yet irreversible.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Optional. The block confirmation level to monitor. Can be:\\\"};duplicate=1\",\"expected\":\"Optional. The block confirmation level to monitor. Can be:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\\\\\"CONFIDENCE_LEVEL_FINALIZED\\\\\\\": A block considered irreversible (safest, but requires waiting longer for finality).\\\"};duplicate=1\",\"expected\":\"\\\"CONFIDENCE_LEVEL_FINALIZED\\\": A block considered irreversible (safest, but requires waiting longer for finality).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\\\\\"CONFIDENCE_LEVEL_LATEST\\\\\\\": The most recent block (fastest but least secure).\\\"};duplicate=1\",\"expected\":\"\\\"CONFIDENCE_LEVEL_LATEST\\\": The most recent block (fastest but least secure).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"\\\\\\\"CONFIDENCE_LEVEL_SAFE\\\\\\\" (default): A block unlikely to be reorged but not yet irreversible.\\\"};duplicate=1\",\"expected\":\"\\\"CONFIDENCE_LEVEL_SAFE\\\" (default): A block unlikely to be reorged but not yet irreversible.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"cre/reference/sdk/triggers/evm-log-trigger-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.10\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.10\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.11\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.11\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.2\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.3\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.4\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.5\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.6\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.6\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.7\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.7\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.8\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.0.9\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.0.9\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.1.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.1.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.10.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.10.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.11.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.11.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.12.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.12.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.13.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.13.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.14.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.14.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.15.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.15.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.16.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.16.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.17.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.17.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.18.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.18.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.19.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.19.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.2.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.2.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.20.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.20.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.21.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.21.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.22.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.22.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.23.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.23.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.24.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.24.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.25.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.25.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.26.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.26.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.27.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.27.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.28.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.28.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.29.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.29.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.3.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.3.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.30.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.30.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.31.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.31.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.4.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.4.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.5.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.5.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.6.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.6.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.7.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.7.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.8.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.8.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE CLI version 1.9.0\\\"};duplicate=1\",\"expected\":\"CRE CLI version 1.9.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"share details about your project\\\"};duplicate=1\",\"expected\":\"share details about your project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=10\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=11\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=12\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=13\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=14\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=15\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=16\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=17\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=18\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=19\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=20\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=21\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=22\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=23\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=24\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=25\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=26\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=27\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=28\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=29\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=30\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=31\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=32\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=33\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=34\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=35\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=36\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=37\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=38\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=39\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=40\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=41\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=42\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=6\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=7\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=8\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/release-notes\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=9\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burst: 10\\\"};duplicate=1\",\"expected\":\"Burst: 10\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Burst: 1\\\"};duplicate=1\",\"expected\":\"Burst: 1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerOwner.VaultSecretsLimit\\\"};duplicate=1\",\"expected\":\"PerOwner.VaultSecretsLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerOwner.WorkflowExecutionConcurrencyLimit\\\"};duplicate=1\",\"expected\":\"PerOwner.WorkflowExecutionConcurrencyLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerSecret.CipherTextSize\\\"};duplicate=1\",\"expected\":\"PerSecret.CipherTextSize\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.CRONTrigger.FastestScheduleInterval\\\"};duplicate=1\",\"expected\":\"PerWorkflow.CRONTrigger.FastestScheduleInterval\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.CapabilityCallTimeout\\\"};duplicate=1\",\"expected\":\"PerWorkflow.CapabilityCallTimeout\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.CapabilityConcurrencyLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.CapabilityConcurrencyLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ChainRead.CallLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ChainRead.CallLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ChainRead.LogQueryBlockLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ChainRead.LogQueryBlockLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ChainRead.PayloadSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ChainRead.PayloadSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ChainWrite.EVM.TransactionGasLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ChainWrite.EVM.TransactionGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ChainWrite.ReportSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ChainWrite.ReportSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ChainWrite.TargetsLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ChainWrite.TargetsLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ConfidentialHTTP.CallLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ConfidentialHTTP.CallLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ConfidentialHTTP.RequestSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ConfidentialHTTP.RequestSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ConfidentialHTTP.ResponseSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ConfidentialHTTP.ResponseSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ConfidentialHTTP.TimeOut\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ConfidentialHTTP.TimeOut\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.Consensus.CallLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.Consensus.CallLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.Consensus.ObservationSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.Consensus.ObservationSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ExecutionConcurrencyLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ExecutionConcurrencyLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ExecutionResponseLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ExecutionResponseLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.ExecutionTimeout\\\"};duplicate=1\",\"expected\":\"PerWorkflow.ExecutionTimeout\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.HTTPAction.CacheAgeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.HTTPAction.CacheAgeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.HTTPAction.CallLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.HTTPAction.CallLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.HTTPAction.ConnectionTimeout\\\"};duplicate=1\",\"expected\":\"PerWorkflow.HTTPAction.ConnectionTimeout\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.HTTPAction.RequestSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.HTTPAction.RequestSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.HTTPAction.ResponseSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.HTTPAction.ResponseSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.HTTPTrigger.RateLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.HTTPTrigger.RateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.LogEventLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.LogEventLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.LogLineLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.LogLineLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.LogTrigger.EventRateLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.LogTrigger.EventRateLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.LogTrigger.EventSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.LogTrigger.EventSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.LogTrigger.FilterAddressLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.LogTrigger.FilterAddressLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.LogTrigger.FilterTopicsPerSlotLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.LogTrigger.FilterTopicsPerSlotLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.Secrets.CallLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.Secrets.CallLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.SecretsConcurrencyLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.SecretsConcurrencyLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.TriggerSubscriptionLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.TriggerSubscriptionLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.WASMBinarySizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.WASMBinarySizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.WASMCompressedBinarySizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.WASMCompressedBinarySizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.WASMConfigSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.WASMConfigSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.WASMMemoryLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.WASMMemoryLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PerWorkflow.WASMSecretsSizeLimit\\\"};duplicate=1\",\"expected\":\"PerWorkflow.WASMSecretsSizeLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate: 1 per 60 seconds\\\"};duplicate=1\",\"expected\":\"Rate: 1 per 60 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Rate: 10 per 6 seconds\\\"};duplicate=1\",\"expected\":\"Rate: 10 per 6 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=10\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=11\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=12\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=13\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=14\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=15\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=16\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=17\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=18\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=19\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=20\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=21\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=22\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=23\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=24\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=25\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=26\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=27\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=28\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=29\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=30\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=31\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=32\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=33\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=34\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=35\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=36\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=37\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=38\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=39\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=40\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=41\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=6\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=7\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=8\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=9\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/service-quotas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/support-feedback\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link/cre/discover\\\"};duplicate=1\",\"expected\":\"app.chain.link/cre/discover\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/support-feedback\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Data Feeds\\\"};duplicate=1\",\"expected\":\"Chainlink Data Feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(this becomes your project directory name)\\\"};duplicate=1\",\"expected\":\"(this becomes your project directory name)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See\\\"};duplicate=1\",\"expected\":\". See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0\\\"};duplicate=1\",\"expected\":\"0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x073671aE6EAa2468c203fDE3a79dEe0836adF032\\\"};duplicate=1\",\"expected\":\"0x073671aE6EAa2468c203fDE3a79dEe0836adF032\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x420721d7d00130a03c5b525b2dbfd42550906ddb3075e8377f9bb5d1a5992f8e\\\"};duplicate=1\",\"expected\":\"0x420721d7d00130a03c5b525b2dbfd42550906ddb3075e8377f9bb5d1a5992f8e\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE account & authentication: You must have a CRE account and be logged in with the CLI. Run\\\"};duplicate=1\",\"expected\":\"CRE account & authentication: You must have a CRE account and be logged in with the CLI. Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Event index:\\\"};duplicate=1\",\"expected\":\"Event index:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go: You must have Go version 1.25.3 or higher installed. Check your version with\\\"};duplicate=1\",\"expected\":\"Go: You must have Go version 1.25.3 or higher installed. Check your version with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Project name:\\\"};duplicate=1\",\"expected\":\"Project name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sepolia Etherscan\\\"};duplicate=1\",\"expected\":\"Sepolia Etherscan\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transaction hash:\\\"};duplicate=1\",\"expected\":\"Transaction hash:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Workflow name:\\\"};duplicate=1\",\"expected\":\"Workflow name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre login\\\"};duplicate=1\",\"expected\":\"cre login\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre whoami\\\"};duplicate=1\",\"expected\":\"cre whoami\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"custom-data-feed\\\"};duplicate=1\",\"expected\":\"custom-data-feed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"demo\\\"};duplicate=1\",\"expected\":\"demo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"go version\\\"};duplicate=1\",\"expected\":\"go version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal to verify you're logged in, or run\\\"};duplicate=1\",\"expected\":\"in your terminal to verify you're logged in, or run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to authenticate. See\\\"};duplicate=1\",\"expected\":\"to authenticate. See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"transaction on the Sepolia testnet\\\"};duplicate=1\",\"expected\":\"transaction on the Sepolia testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-go\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(this becomes your project directory name)\\\"};duplicate=1\",\"expected\":\"(this becomes your project directory name)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See\\\"};duplicate=1\",\"expected\":\". See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0\\\"};duplicate=1\",\"expected\":\"0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x073671aE6EAa2468c203fDE3a79dEe0836adF032\\\"};duplicate=1\",\"expected\":\"0x073671aE6EAa2468c203fDE3a79dEe0836adF032\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x420721d7d00130a03c5b525b2dbfd42550906ddb3075e8377f9bb5d1a5992f8e\\\"};duplicate=1\",\"expected\":\"0x420721d7d00130a03c5b525b2dbfd42550906ddb3075e8377f9bb5d1a5992f8e\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Bun: You must have Bun version 1.2.21 or higher installed. Check your version with\\\"};duplicate=1\",\"expected\":\"Bun: You must have Bun version 1.2.21 or higher installed. Check your version with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE account & authentication: You must have a CRE account and be logged in with the CLI. Run\\\"};duplicate=1\",\"expected\":\"CRE account & authentication: You must have a CRE account and be logged in with the CLI. Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Event index:\\\"};duplicate=1\",\"expected\":\"Event index:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Project name:\\\"};duplicate=1\",\"expected\":\"Project name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Sepolia Etherscan\\\"};duplicate=1\",\"expected\":\"Sepolia Etherscan\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Transaction hash:\\\"};duplicate=1\",\"expected\":\"Transaction hash:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Workflow name:\\\"};duplicate=1\",\"expected\":\"Workflow name:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bun --version\\\"};duplicate=1\",\"expected\":\"bun --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre login\\\"};duplicate=1\",\"expected\":\"cre login\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cre whoami\\\"};duplicate=1\",\"expected\":\"cre whoami\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"custom-data-feed\\\"};duplicate=1\",\"expected\":\"custom-data-feed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"demo\\\"};duplicate=1\",\"expected\":\"demo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal to verify you're logged in, or run\\\"};duplicate=1\",\"expected\":\"in your terminal to verify you're logged in, or run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to authenticate. See\\\"};duplicate=1\",\"expected\":\"to authenticate. See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"transaction on the Sepolia testnet\\\"};duplicate=1\",\"expected\":\"transaction on the Sepolia testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"cre/templates/running-demo-workflow-ts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"crec\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Runtime Environment\\\"};duplicate=1\",\"expected\":\"Chainlink Runtime Environment\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Off-Chain Reporting (OCR)\\\"};duplicate=1\",\"expected\":\"Off-Chain Reporting (OCR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"crec\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"crec/concepts/eip712-signing\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EIP-712: Typed structured data hashing and signing\\\"};duplicate=1\",\"expected\":\"EIP-712: Typed structured data hashing and signing\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/concepts/eip712-signing\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"EIP-712\\\"};duplicate=1\",\"expected\":\"EIP-712\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/concepts/eip712-signing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"crec/concepts/eip712-signing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"crec/concepts/verifiable-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Off-Chain Reporting (OCR)\\\"};duplicate=1\",\"expected\":\"Off-Chain Reporting (OCR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/concepts/verifiable-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"10344971235874465080\\\"};duplicate=1\",\"expected\":\"10344971235874465080\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"11155111\\\"};duplicate=1\",\"expected\":\"11155111\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"137\\\"};duplicate=1\",\"expected\":\"137\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"14767482510784806043\\\"};duplicate=1\",\"expected\":\"14767482510784806043\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"15971525489660198786\\\"};duplicate=1\",\"expected\":\"15971525489660198786\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16015286601757825753\\\"};duplicate=1\",\"expected\":\"16015286601757825753\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16281711391670634445\\\"};duplicate=1\",\"expected\":\"16281711391670634445\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"3478487238524512106\\\"};duplicate=1\",\"expected\":\"3478487238524512106\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4051577828743386545\\\"};duplicate=1\",\"expected\":\"4051577828743386545\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"421614\\\"};duplicate=1\",\"expected\":\"421614\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"42161\\\"};duplicate=1\",\"expected\":\"42161\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"43113\\\"};duplicate=1\",\"expected\":\"43113\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"43114\\\"};duplicate=1\",\"expected\":\"43114\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4949039107694359620\\\"};duplicate=1\",\"expected\":\"4949039107694359620\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"5009297550715157269\\\"};duplicate=1\",\"expected\":\"5009297550715157269\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"6433500567565415381\\\"};duplicate=1\",\"expected\":\"6433500567565415381\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"80002\\\"};duplicate=1\",\"expected\":\"80002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"84532\\\"};duplicate=1\",\"expected\":\"84532\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"8453\\\"};duplicate=1\",\"expected\":\"8453\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Mainnet\\\"};duplicate=1\",\"expected\":\"Arbitrum Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Fuji\\\"};duplicate=1\",\"expected\":\"Avalanche Fuji\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Mainnet\\\"};duplicate=1\",\"expected\":\"Avalanche Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base Mainnet\\\"};duplicate=1\",\"expected\":\"Base Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Base Sepolia\\\"};duplicate=1\",\"expected\":\"Base Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain ID\\\"};duplicate=1\",\"expected\":\"Chain ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain ID\\\"};duplicate=2\",\"expected\":\"Chain ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain Selector\\\"};duplicate=1\",\"expected\":\"Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chain Selector\\\"};duplicate=2\",\"expected\":\"Chain Selector\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Mainnet\\\"};duplicate=1\",\"expected\":\"Ethereum Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ethereum Sepolia\\\"};duplicate=1\",\"expected\":\"Ethereum Sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network\\\"};duplicate=1\",\"expected\":\"Network\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network\\\"};duplicate=2\",\"expected\":\"Network\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Amoy\\\"};duplicate=1\",\"expected\":\"Polygon Amoy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Mainnet\\\"};duplicate=1\",\"expected\":\"Polygon Mainnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=10\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=3\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=4\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=5\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=6\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=7\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=8\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=9\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=1\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=10\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=2\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=3\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=4\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=5\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=6\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=7\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=8\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=9\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=1\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=10\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=2\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=3\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=4\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=5\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=6\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=7\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=8\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=9\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=1\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=2\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=1\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=2\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=1\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=10\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=11\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=12\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=13\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=14\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=15\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=16\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=17\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=18\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=19\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=2\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=20\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=21\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=22\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=23\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=24\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=25\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=26\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=27\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=28\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=29\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=3\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=30\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=4\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=5\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=6\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=7\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=8\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=9\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=1\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=2\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=3\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=4\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=5\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=6\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=1\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=2\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=1\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=10\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=11\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=12\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=2\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=3\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=4\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=5\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=6\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=7\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=8\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"crec/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=9\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contact us\\\"};duplicate=1\",\"expected\":\"Contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/24-7-extended-hours-data-feeds\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/24-7-extended-hours-data-feeds\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=2\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=1\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=2\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=3\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=4\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=5\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=6\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/aptos\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can find the feed ID for other assets in the\\\"};duplicate=1\",\"expected\":\". You can find the feed ID for other assets in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/aptos\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x01a0b4d920000332000000000000000000000000000000000000000000000000\\\"};duplicate=1\",\"expected\":\"0x01a0b4d920000332000000000000000000000000000000000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/aptos\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this step, you will interact with your deployed contract to fetch the BTC/USD price and timestamp. The BTC/USD feed ID on Aptos testnet is:\\\"};duplicate=1\",\"expected\":\"In this step, you will interact with your deployed contract to fetch the BTC/USD price and timestamp. The BTC/USD feed ID on Aptos testnet is:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/aptos\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"aptos help\\\"};duplicate=1\",\"expected\":\"aptos help\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/aptos\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal to verify if the CLI is correctly installed.\\\"};duplicate=1\",\"expected\":\"in your terminal to verify if the CLI is correctly installed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/aptos\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"installed. You can run\\\"};duplicate=1\",\"expected\":\"installed. You can run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=1\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=10\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=11\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=12\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=13\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=14\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=15\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=16\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=17\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=18\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=19\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=2\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=20\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=21\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=3\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=4\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=5\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=6\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=7\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=8\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/contract-registry\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"img\\\",\\\"reason\\\":\\\"Raw HTML element img is not statically projected\\\"};duplicate=9\",\"component\":\"img\",\"reason\":\"Raw HTML element img is not statically projected\"}", + "{\"path\":\"data-feeds/data-sources\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contact us\\\"};duplicate=1\",\"expected\":\"contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/data-sources\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/deprecating-feeds\",\"status\":\"degraded\",\"language\":\"default\",\"occurrence\":\"lang=default;transform=replacement\",\"reason\":\"normal route used replacement output\"}", + "{\"path\":\"data-feeds/deprecating-feeds\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-feeds/ens\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"EnsLookupForm\\\",\\\"reason\\\":\\\"Unsupported MDX component EnsLookupForm\\\"};duplicate=1\",\"component\":\"EnsLookupForm\",\"reason\":\"Unsupported MDX component EnsLookupForm\"}", + "{\"path\":\"data-feeds/ens\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"EnsManualLookupForm\\\",\\\"reason\\\":\\\"Unsupported MDX component EnsManualLookupForm\\\"};duplicate=1\",\"component\":\"EnsManualLookupForm\",\"reason\":\"Unsupported MDX component EnsManualLookupForm\"}", + "{\"path\":\"data-feeds/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the contract in Remix\\\"};duplicate=1\",\"expected\":\"Open the contract in Remix\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/historical-data\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"HistoricalPrice\\\",\\\"reason\\\":\\\"Unsupported MDX component HistoricalPrice\\\"};duplicate=1\",\"component\":\"HistoricalPrice\",\"reason\":\"Unsupported MDX component HistoricalPrice\"}", + "{\"path\":\"data-feeds/historical-data\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=1\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/l2-sequencer-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/price-feeds/addresses\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-feeds/rates-feeds/addresses\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"18:00 ET Sunday to 17:00 ET Friday with a one-hour break Monday through Thursday from 17:00 to 18:00.\\\"};duplicate=1\",\"expected\":\"18:00 ET Sunday to 17:00 ET Friday with a one-hour break Monday through Thursday from 17:00 to 18:00.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"18:00 ET Sunday to 17:00 ET Friday with a one-hour break Monday through Thursday from 17:00 to 18:00.\\\"};duplicate=2\",\"expected\":\"18:00 ET Sunday to 17:00 ET Friday with a one-hour break Monday through Thursday from 17:00 to 18:00.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"18:00 ET Sunday to 17:00 ET Friday, with a one-hour break Monday through Thursday from 17:00 to 18:00.\\\"};duplicate=1\",\"expected\":\"18:00 ET Sunday to 17:00 ET Friday, with a one-hour break Monday through Thursday from 17:00 to 18:00.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"18:00 ET Sunday to 17:00 ET Friday.\\\"};duplicate=1\",\"expected\":\"18:00 ET Sunday to 17:00 ET Friday.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The feed also follows the COMEX market holiday schedule.\\\"};duplicate=1\",\"expected\":\"The feed also follows the COMEX market holiday schedule.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The feed also follows the NYMEX market holiday schedule.\\\"};duplicate=1\",\"expected\":\"The feed also follows the NYMEX market holiday schedule.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The feeds also follow the global Forex market Christmas and New Year's Day holiday schedule. Many non-G12 currencies primarily trade during local market hours. It is recommended to use those feeds only during local trading hours. We generally observe normal trading within these hours. Prices outside of these hours may be subject to volatility and users are advised to implement additional controls. In addition, local holidays, natural disasters, political unrest or other exogenous shocks are liable to interrupt normal trading in less-liquid currencies. Some currency pairs are instead offered as\\\"};duplicate=1\",\"expected\":\"The feeds also follow the global Forex market Christmas and New Year's Day holiday schedule. Many non-G12 currencies primarily trade during local market hours. It is recommended to use those feeds only during local trading hours. We generally observe normal trading within these hours. Prices outside of these hours may be subject to volatility and users are advised to implement additional controls. In addition, local holidays, natural disasters, political unrest or other exogenous shocks are liable to interrupt normal trading in less-liquid currencies. Some currency pairs are instead offered as\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The feeds also follow the global Forex market holiday schedule for Christmas and New Year's Day. Some\\\"};duplicate=1\",\"expected\":\"The feeds also follow the global Forex market holiday schedule for Christmas and New Year's Day. Some\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/selecting-data-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/smartdata\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about making responsible data quality decisions.\\\"};duplicate=1\",\"expected\":\"Learn more about making responsible data quality decisions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/smartdata\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/smartdata\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/smartdata/addresses\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-feeds/solana/using-data-feeds-off-chain\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/solana/using-data-feeds-off-chain\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/solana/using-data-feeds-solana\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/solana/using-data-feeds-solana\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/solana/using-data-feeds-solana\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/solana/using-data-feeds-solana\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/starknet\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Make sure you have the Starkli CLI installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Make sure you have the Starkli CLI installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal. Expect an output similar to the following:\\\"};duplicate=1\",\"expected\":\"in your terminal. Expect an output similar to the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"starkli --version\\\"};duplicate=1\",\"expected\":\"starkli --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Declaring and deploying AggregatorConsumer Declaring contract... Class hash = 2231728956022539490111802723283413449895905447951536434260474920103409356221 Deploying contract... Transaction hash = 0x46b39d79cf90ed75fbae5d097d6026cf7ab1184e852d36aed336528fc77220d Waiting for transaction to be accepted (59 retries / 295s left until timeout) AggregatorConsumer deployed at address: 2956260449156927152048242588422796467290585049226993045191257886158889626959 command: script run status: success\\\"};duplicate=1\",\"expected\":\"Declaring and deploying AggregatorConsumer Declaring contract... Class hash = 2231728956022539490111802723283413449895905447951536434260474920103409356221 Deploying contract... Transaction hash = 0x46b39d79cf90ed75fbae5d097d6026cf7ab1184e852d36aed336528fc77220d Waiting for transaction to be accepted (59 retries / 295s left until timeout) AggregatorConsumer deployed at address: 2956260449156927152048242588422796467290585049226993045191257886158889626959 command: script run status: success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Result::Ok(CallResult { data: [3374557091160001179079409876363576078229871685244120671563970051729036896526] }) Result::Ok(CallResult { data: [340282366920938463463374607431768224268, 354661371569, 54349, 1711716556, 1711716514] }) Transaction hash = 0x20edd6388041d78a36f153a7694fd8c0849d81aff3fc2d5a0606d7275ea4837 Waiting for transaction to be accepted (59 retries / 295s left until timeout) Result::Ok(InvokeResult { transaction_hash: 930889525374955449815155593419397099236202282693723934594292211164864202807 }) command: script run status: success\\\"};duplicate=1\",\"expected\":\"Result::Ok(CallResult { data: [3374557091160001179079409876363576078229871685244120671563970051729036896526] }) Result::Ok(CallResult { data: [340282366920938463463374607431768224268, 354661371569, 54349, 1711716556, 1711716514] }) Transaction hash = 0x20edd6388041d78a36f153a7694fd8c0849d81aff3fc2d5a0606d7275ea4837 Waiting for transaction to be accepted (59 retries / 295s left until timeout) Result::Ok(InvokeResult { transaction_hash: 930889525374955449815155593419397099236202282693723934594292211164864202807 }) command: script run status: success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cd chainlink-starknet/examples/contracts/aggregator_consumer/\\\"};duplicate=1\",\"expected\":\"cd chainlink-starknet/examples/contracts/aggregator_consumer/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"command: account create address: 0x3e7ee3d05d3efae4e493c9733c8c391d4a5cc63d34f95a164c832060fcdd43d max_fee: 9529927566560 message: Account successfully created. Prefund generated address with at least tokens. It is good to send more in the case of higher demand. Your accounts: { \\\\\\\"alpha-sepolia\\\\\\\": { \\\\\\\"testnet-account\\\\\\\": { \\\\\\\"address\\\\\\\": \\\\\\\"0x3e7ee3d05d3efae4e493c9733c8c391d4a5cc63d34f95a164c832060fcdd43d\\\\\\\", \\\\\\\"class_hash\\\\\\\": \\\\\\\"0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755\\\\\\\", \\\\\\\"deployed\\\\\\\": false, \\\\\\\"legacy\\\\\\\": false, \\\\\\\"private_key\\\\\\\": , \\\\\\\"public_key\\\\\\\": \\\\\\\"0x2972c3cb7aa85403fa1e038f9ce7a93f025ea57017eb7ef735bae989bfb15bd\\\\\\\", \\\\\\\"salt\\\\\\\": \\\\\\\"0x61a062d2dd4e7656\\\\\\\" } } }\\\"};duplicate=1\",\"expected\":\"command: account create address: 0x3e7ee3d05d3efae4e493c9733c8c391d4a5cc63d34f95a164c832060fcdd43d max_fee: 9529927566560 message: Account successfully created. Prefund generated address with at least tokens. It is good to send more in the case of higher demand. Your accounts: { \\\"alpha-sepolia\\\": { \\\"testnet-account\\\": { \\\"address\\\": \\\"0x3e7ee3d05d3efae4e493c9733c8c391d4a5cc63d34f95a164c832060fcdd43d\\\", \\\"class_hash\\\": \\\"0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755\\\", \\\"deployed\\\": false, \\\"legacy\\\": false, \\\"private_key\\\": , \\\"public_key\\\": \\\"0x2972c3cb7aa85403fa1e038f9ce7a93f025ea57017eb7ef735bae989bfb15bd\\\", \\\"salt\\\": \\\"0x61a062d2dd4e7656\\\" } } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"command: account deploy transaction_hash: 0x541ffae49f77dd942376391286052d9fb87dc8d6848139ab1508c114e3aa005\\\"};duplicate=1\",\"expected\":\"command: account deploy transaction_hash: 0x541ffae49f77dd942376391286052d9fb87dc8d6848139ab1508c114e3aa005\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"git clone https://github.com/smartcontractkit/chainlink-starknet.git\\\"};duplicate=1\",\"expected\":\"git clone https://github.com/smartcontractkit/chainlink-starknet.git\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"make ac-deploy NETWORK=testnet\\\"};duplicate=1\",\"expected\":\"make ac-deploy NETWORK=testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"make ac-read-answer NETWORK=testnet\\\"};duplicate=1\",\"expected\":\"make ac-read-answer NETWORK=testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"make ac-set-answer NETWORK=testnet\\\"};duplicate=1\",\"expected\":\"make ac-set-answer NETWORK=testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"make create-account\\\"};duplicate=1\",\"expected\":\"make create-account\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"make deploy-account\\\"};duplicate=1\",\"expected\":\"make deploy-account\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"make test\\\"};duplicate=1\",\"expected\":\"make test\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Clone and configure the code examples repository\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Clone and configure the code examples repository\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Create, deploy, and fund an account\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Create, deploy, and fund an account\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Deploy and interact with a consumer contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Deploy and interact with a consumer contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Tutorial\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Argent\\\",\\\"url\\\":\\\"https://www.argent.xyz/\\\"};duplicate=1\",\"expected\":\"Argent -> https://www.argent.xyz/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Braavos\\\",\\\"url\\\":\\\"https://braavos.app/\\\"};duplicate=1\",\"expected\":\"Braavos -> https://braavos.app/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink faucet\\\",\\\"url\\\":\\\"https://faucets.chain.link/sepolia\\\"};duplicate=1\",\"expected\":\"Chainlink faucet -> https://faucets.chain.link/sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Scarb\\\",\\\"url\\\":\\\"https://docs.swmansion.com/scarb/download.html#install-via-asdf\\\"};duplicate=1\",\"expected\":\"Scarb -> https://docs.swmansion.com/scarb/download.html#install-via-asdf\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StarkGate bridge\\\",\\\"url\\\":\\\"https://starkgate.starknet.io/\\\"};duplicate=1\",\"expected\":\"StarkGate bridge -> https://starkgate.starknet.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Starknet Foundry\\\",\\\"url\\\":\\\"https://github.com/foundry-rs/asdf-starknet-foundry\\\"};duplicate=1\",\"expected\":\"Starknet Foundry -> https://github.com/foundry-rs/asdf-starknet-foundry\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Starknet Sepolia ETH Faucet\\\",\\\"url\\\":\\\"https://blastapi.io/faucets/starknet-sepolia-eth\\\"};duplicate=1\",\"expected\":\"Starknet Sepolia ETH Faucet -> https://blastapi.io/faucets/starknet-sepolia-eth\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"asdf\\\",\\\"url\\\":\\\"https://asdf-vm.com/guide/introduction.html\\\"};duplicate=1\",\"expected\":\"asdf -> https://asdf-vm.com/guide/introduction.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"chainlink-starknet\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/\\\"};duplicate=1\",\"expected\":\"chainlink-starknet -> https://github.com/smartcontractkit/chainlink-starknet/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"converter tool\\\",\\\"url\\\":\\\"https://www.rapidtables.com/convert/number/decimal-to-hex.html\\\"};duplicate=1\",\"expected\":\"converter tool -> https://www.rapidtables.com/convert/number/decimal-to-hex.html\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"create-account\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/blob/c97baa6e52c7e6e01ea0235bf0e71abae23e3c00/examples/contracts/aggregator_consumer/Makefile#L22\\\"};duplicate=1\",\"expected\":\"create-account -> https://github.com/smartcontractkit/chainlink-starknet/blob/c97baa6e52c7e6e01ea0235bf0e71abae23e3c00/examples/contracts/aggregator_consumer/Makefile#L22\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"deploy_aggregator_consumer\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/deploy_aggregator_consumer.cairo\\\"};duplicate=1\",\"expected\":\"deploy_aggregator_consumer -> https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/deploy_aggregator_consumer.cairo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"deploy_aggregator_consumer\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/deploy_aggregator_consumer.cairo\\\"};duplicate=2\",\"expected\":\"deploy_aggregator_consumer -> https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/deploy_aggregator_consumer.cairo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"install the required version\\\",\\\"url\\\":\\\"https://docs.swmansion.com/scarb/download.html#install-via-installation-script\\\"};duplicate=1\",\"expected\":\"install the required version -> https://docs.swmansion.com/scarb/download.html#install-via-installation-script\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"install the required version\\\",\\\"url\\\":\\\"https://github.com/foundry-rs/starknet-foundry#installation\\\"};duplicate=1\",\"expected\":\"install the required version -> https://github.com/foundry-rs/starknet-foundry#installation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"read_answer\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/read_answer.cairo\\\"};duplicate=1\",\"expected\":\"read_answer -> https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/read_answer.cairo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"set_answer\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/set_answer.cairo\\\"};duplicate=1\",\"expected\":\"set_answer -> https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/set_answer.cairo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"set_answer\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/set_answer.cairo\\\"};duplicate=2\",\"expected\":\"set_answer -> https://github.com/smartcontractkit/chainlink-starknet/blob/develop/examples/contracts/aggregator_consumer/scripts/src/consumer/set_answer.cairo\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or use the\\\"};duplicate=1\",\"expected\":\", or use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x228128e84cdfc51003505dd5733729e57f7d1f7e54da679474e73db4ecaad44\\\"};duplicate=1\",\"expected\":\"0x228128e84cdfc51003505dd5733729e57f7d1f7e54da679474e73db4ecaad44\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you prepare the requirements, make sure the required tools are configured correctly by running the tests:\\\"};duplicate=1\",\"expected\":\"After you prepare the requirements, make sure the required tools are configured correctly by running the tests:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Alternatively, you can transfer ETH tokens from a Starknet-compatible wallet, such as\\\"};duplicate=1\",\"expected\":\"Alternatively, you can transfer ETH tokens from a Starknet-compatible wallet, such as\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Alternatively, you can use the\\\"};duplicate=1\",\"expected\":\"Alternatively, you can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clone the\\\"};duplicate=1\",\"expected\":\"Clone the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy your account to Starknet Sepolia:\\\"};duplicate=1\",\"expected\":\"Deploy your account to Starknet Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect an output similar to the following:\\\"};duplicate=1\",\"expected\":\"Expect an output similar to the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect an output similar to the following:\\\"};duplicate=2\",\"expected\":\"Expect an output similar to the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"From the output, note:\\\"};duplicate=1\",\"expected\":\"From the output, note:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fund the newly created account with testnet ETH to cover the account deployment, the consumer contract deployment, and the network interaction costs.\\\"};duplicate=1\",\"expected\":\"Fund the newly created account with testnet ETH to cover the account deployment, the consumer contract deployment, and the network interaction costs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go to the Blast\\\"};duplicate=1\",\"expected\":\"Go to the Blast\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In /scripts/src/consumer/, open the\\\"};duplicate=1\",\"expected\":\"In /scripts/src/consumer/, open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In /scripts/src/consumer/, open the\\\"};duplicate=2\",\"expected\":\"In /scripts/src/consumer/, open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to /scripts/src/consumer/ and open the\\\"};duplicate=1\",\"expected\":\"Navigate to /scripts/src/consumer/ and open the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to the aggregator_consumer directory:\\\"};duplicate=1\",\"expected\":\"Navigate to the aggregator_consumer directory:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the following command to read the stored answer value from your consumer contract:\\\"};duplicate=1\",\"expected\":\"Run the following command to read the stored answer value from your consumer contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the following command to update the answer:\\\"};duplicate=1\",\"expected\":\"Run the following command to update the answer:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the\\\"};duplicate=1\",\"expected\":\"Run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Scarb: Install Scarb v2.6.4. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Scarb: Install Scarb v2.6.4. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Starknet Foundry: Install Starknet Foundry v0.21.0. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Starknet Foundry: Install Starknet Foundry v0.21.0. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The account details are stored locally in your ~/.starknet_accounts/starknet_open_zeppelin_accounts.json file.\\\"};duplicate=1\",\"expected\":\"The account details are stored locally in your ~/.starknet_accounts/starknet_open_zeppelin_accounts.json file.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The consumer address is represented in its decimal form: 2956260449156927152048242588422796467290585049226993045191257886158889626959. You can use a\\\"};duplicate=1\",\"expected\":\"The consumer address is represented in its decimal form: 2956260449156927152048242588422796467290585049226993045191257886158889626959. You can use a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The consumer contract contains two functions that you interact with in this example:\\\"};duplicate=1\",\"expected\":\"The consumer contract contains two functions that you interact with in this example:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The contracts should compile successfully and the tests should pass.\\\"};duplicate=1\",\"expected\":\"The contracts should compile successfully and the tests should pass.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The max_fee value, which is the minimum amount of testnet ETH required to deploy the account.\\\"};duplicate=1\",\"expected\":\"The max_fee value, which is the minimum amount of testnet ETH required to deploy the account.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This command runs the\\\"};duplicate=1\",\"expected\":\"This command runs the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Update the aggregator_address variable within the main function with the ETH / USD Chainlink proxy aggregator contract address on Starknet Sepolia :\\\"};duplicate=1\",\"expected\":\"Update the aggregator_address variable within the main function with the ETH / USD Chainlink proxy aggregator contract address on Starknet Sepolia :\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Wait a few seconds for the transaction to complete.\\\"};duplicate=1\",\"expected\":\"Wait a few seconds for the transaction to complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Your account address. In this example, it is 0x03e7ee3d05d3efae4e493c9733c8c391d4a5cc63d34f95a164c832060fcdd43d, with an added zero after 0x.\\\"};duplicate=1\",\"expected\":\"Your account address. In this example, it is 0x03e7ee3d05d3efae4e493c9733c8c391d4a5cc63d34f95a164c832060fcdd43d, with an added zero after 0x.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and enter your account address to receive testnet ETH. Wait a few seconds for the transaction to complete.\\\"};duplicate=1\",\"expected\":\"and enter your account address to receive testnet ETH. Wait a few seconds for the transaction to complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and\\\"};duplicate=1\",\"expected\":\"and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for more information.\\\"};duplicate=1\",\"expected\":\"for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if necessary.\\\"};duplicate=1\",\"expected\":\"if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if necessary.\\\"};duplicate=2\",\"expected\":\"if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and\\\"};duplicate=1\",\"expected\":\"in your terminal and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and\\\"};duplicate=2\",\"expected\":\"in your terminal and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"read_answer reads the stored _answer value.\\\"};duplicate=1\",\"expected\":\"read_answer reads the stored _answer value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"repository, which includes the example contracts for this guide:\\\"};duplicate=1\",\"expected\":\"repository, which includes the example contracts for this guide:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"scarb --version\\\"};duplicate=1\",\"expected\":\"scarb --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script and update the consumer_address variable with your deployed consumer address.\\\"};duplicate=1\",\"expected\":\"script and update the consumer_address variable with your deployed consumer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script and update the consumer_address variable with your deployed consumer address.\\\"};duplicate=2\",\"expected\":\"script and update the consumer_address variable with your deployed consumer address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script to create a new OpenZeppelin local account for the Sepolia testnet:\\\"};duplicate=1\",\"expected\":\"script to create a new OpenZeppelin local account for the Sepolia testnet:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script to deploy a consumer contract to Starknet Sepolia. Use the following command:\\\"};duplicate=1\",\"expected\":\"script to deploy a consumer contract to Starknet Sepolia. Use the following command:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script to retrieve the latest answer from the ETH / USD aggregator contract and stores it in the internal storage variable _answer of your consumer contract.\\\"};duplicate=1\",\"expected\":\"script to retrieve the latest answer from the ETH / USD aggregator contract and stores it in the internal storage variable _answer of your consumer contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"script.\\\"};duplicate=1\",\"expected\":\"script.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"set_answer retrieves the latest answer from the specified aggregator contract and stores it in the _answer internal storage variable.\\\"};duplicate=1\",\"expected\":\"set_answer retrieves the latest answer from the specified aggregator contract and stores it in the _answer internal storage variable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sncast --version\\\"};duplicate=1\",\"expected\":\"sncast --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"snforge --version\\\"};duplicate=1\",\"expected\":\"snforge --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to get the hexadecimal format. In this example, the hexadecimal equivalent is 0x06892f22691473dc5a413a7626062604155516ec91a82d3734dc68bcf3d72d4f. Save your consumer address for the next steps.\\\"};duplicate=1\",\"expected\":\"to get the hexadecimal format. In this example, the hexadecimal equivalent is 0x06892f22691473dc5a413a7626062604155516ec91a82d3734dc68bcf3d72d4f. Save your consumer address for the next steps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to transfer testnet ETH from Ethereum Sepolia to Starknet Sepolia. If you need testnet ETH on Ethereum Sepolia, you can use the\\\"};duplicate=1\",\"expected\":\"to transfer testnet ETH from Ethereum Sepolia to Starknet Sepolia. If you need testnet ETH on Ethereum Sepolia, you can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/consumer-contract\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tool version manager to install both Starknet Foundry and Scarb. Read the setup instructions for\\\"};duplicate=1\",\"expected\":\"tool version manager to install both Starknet Foundry and Scarb. Read the setup instructions for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"command: call response: [0x10000000000000000000000000000320c, 0x5293770eb1, 0xd44d, 0x6606b8cc, 0x6606b8a2]\\\"};duplicate=1\",\"expected\":\"command: call response: [0x10000000000000000000000000000320c, 0x5293770eb1, 0xd44d, 0x6606b8cc, 0x6606b8a2]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"sncast \\\\\\\\ --url https://starknet-sepolia.public.blastapi.io/rpc/v0_7 \\\\\\\\ call \\\\\\\\ --contract-address 0x228128e84cdfc51003505dd5733729e57f7d1f7e54da679474e73db4ecaad44 \\\\\\\\ --function \\\\\\\"latest_round_data\\\\\\\" \\\\\\\\\\\"};duplicate=1\",\"expected\":\"sncast \\\\ --url https://starknet-sepolia.public.blastapi.io/rpc/v0_7 \\\\ call \\\\ --contract-address 0x228128e84cdfc51003505dd5733729e57f7d1f7e54da679474e73db4ecaad44 \\\\ --function \\\"latest_round_data\\\" \\\\\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Tutorial\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Alchemy\\\",\\\"url\\\":\\\"https://www.alchemy.com/starknet\\\"};duplicate=1\",\"expected\":\"Alchemy -> https://www.alchemy.com/starknet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Blast API\\\",\\\"url\\\":\\\"https://blastapi.io/public-api/starknet\\\"};duplicate=1\",\"expected\":\"Blast API -> https://blastapi.io/public-api/starknet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Price Feed Contract Addresses\\\",\\\"url\\\":\\\"/data-feeds/price-feeds/addresses?network=starknet\\\"};duplicate=1\",\"expected\":\"Price Feed Contract Addresses -> /data-feeds/price-feeds/addresses?network=starknet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"installation\\\",\\\"url\\\":\\\"https://github.com/foundry-rs/starknet-foundry#installation\\\"};duplicate=1\",\"expected\":\"installation -> https://github.com/foundry-rs/starknet-foundry#installation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x10000000000000000000000000000320c\\\"};duplicate=1\",\"expected\":\"0x10000000000000000000000000000320c\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x5293770eb1\\\"};duplicate=1\",\"expected\":\"0x5293770eb1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x6606b8a2\\\"};duplicate=1\",\"expected\":\"0x6606b8a2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x6606b8cc\\\"};duplicate=1\",\"expected\":\"0x6606b8cc\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xd44d\\\"};duplicate=1\",\"expected\":\"0xd44d\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1711716514\\\"};duplicate=1\",\"expected\":\"1711716514\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1711716556\\\"};duplicate=1\",\"expected\":\"1711716556\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"340282366920938463463374607431768224268\\\"};duplicate=1\",\"expected\":\"340282366920938463463374607431768224268\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"354661371569\\\"};duplicate=1\",\"expected\":\"354661371569\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"54349\\\"};duplicate=1\",\"expected\":\"54349\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Decoded value\\\"};duplicate=1\",\"expected\":\"Decoded value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect an output similar to the following:\\\"};duplicate=1\",\"expected\":\"Expect an output similar to the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For a complete list of Chainlink Price Feeds available on Starknet, see the\\\"};duplicate=1\",\"expected\":\"For a complete list of Chainlink Price Feeds available on Starknet, see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hex-encoded value\\\"};duplicate=1\",\"expected\":\"Hex-encoded value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: This example uses a\\\"};duplicate=1\",\"expected\":\"Note: This example uses a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RPC endpoint. You can interact with the network using any other Starknet Sepolia RPC provider, such as\\\"};duplicate=1\",\"expected\":\"RPC endpoint. You can interact with the network using any other Starknet Sepolia RPC provider, such as\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run the following command to read data from the ETH / USD data feed proxy contract:\\\"};duplicate=1\",\"expected\":\"Run the following command to read data from the ETH / USD data feed proxy contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Unix timestamp indicating when the data round started\\\"};duplicate=1\",\"expected\":\"The Unix timestamp indicating when the data round started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Unix timestamp indicating when the data was last updated\\\"};duplicate=1\",\"expected\":\"The Unix timestamp indicating when the data was last updated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The actual data provided by the data feed, representing the latest price of an asset in the case of a price feed\\\"};duplicate=1\",\"expected\":\"The actual data provided by the data feed, representing the latest price of an asset in the case of a price feed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The block number at which the data was recorded on the blockchain\\\"};duplicate=1\",\"expected\":\"The block number at which the data was recorded on the blockchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The example output contains an array with the hex-encoded latest round of data for the ETH / USD price feed. The array contains the following values:\\\"};duplicate=1\",\"expected\":\"The example output contains an array with the hex-encoded latest round of data for the ETH / USD price feed. The array contains the following values:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The unique identifier of the data round\\\"};duplicate=1\",\"expected\":\"The unique identifier of the data round\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value name\\\"};duplicate=1\",\"expected\":\"Value name\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"answer\\\"};duplicate=1\",\"expected\":\"answer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"block_num\\\"};duplicate=1\",\"expected\":\"block_num\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide if necessary.\\\"};duplicate=1\",\"expected\":\"guide if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal. Follow the\\\"};duplicate=1\",\"expected\":\"in your terminal. Follow the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=1\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"round_id\\\"};duplicate=1\",\"expected\":\"round_id\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sncast --version\\\"};duplicate=1\",\"expected\":\"sncast --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"snforge --version\\\"};duplicate=1\",\"expected\":\"snforge --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"started_at\\\"};duplicate=1\",\"expected\":\"started_at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"toolkit installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"toolkit installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/read-data\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"updated_at\\\"};duplicate=1\",\"expected\":\"updated_at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Scarb: Install Scarb v2.6.4. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Scarb: Install Scarb v2.6.4. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Starknet Foundry: Install Starknet Foundry v0.21.0. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Starknet Foundry: Install Starknet Foundry v0.21.0. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and\\\"};duplicate=1\",\"expected\":\"in your terminal and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and\\\"};duplicate=2\",\"expected\":\"in your terminal and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"scarb --version\\\"};duplicate=1\",\"expected\":\"scarb --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"sncast --version\\\"};duplicate=1\",\"expected\":\"sncast --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/starknet/tutorials/snfoundry/sn-devnet-rs\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"snforge --version\\\"};duplicate=1\",\"expected\":\"snforge --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Atlas searcher onboarding guide\\\"};duplicate=1\",\"expected\":\"Atlas searcher onboarding guide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Reach out to\\\"};duplicate=1\",\"expected\":\"Reach out to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for assistance getting onboarded. Searchers can\\\"};duplicate=1\",\"expected\":\"for assistance getting onboarded. Searchers can\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=2\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=3\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=4\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=5\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Query this value by calling\\\"};duplicate=1\",\"expected\":\". Query this value by calling\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". The Atlas source code is available at the\\\"};duplicate=1\",\"expected\":\". The Atlas source code is available at the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Always submit bids to\\\"};duplicate=1\",\"expected\":\"Always submit bids to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Atlas GitHub repository\\\"};duplicate=1\",\"expected\":\"Atlas GitHub repository\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Atlas must be imported in your project before inheriting from\\\"};duplicate=1\",\"expected\":\"Atlas must be imported in your project before inheriting from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avoid logic that limits bidding to a single auction per price update.\\\"};duplicate=1\",\"expected\":\"Avoid logic that limits bidding to a single auction per price update.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"DappControl\\\"};duplicate=1\",\"expected\":\"DappControl\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensure you are calling with the proper account.\\\"};duplicate=1\",\"expected\":\"Ensure you are calling with the proper account.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Latency and timing differences between parallel auctions are expected and unavoidable.\\\"};duplicate=1\",\"expected\":\"Latency and timing differences between parallel auctions are expected and unavoidable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Searchers must not attempt to use a gas limit for their operation that is greater than the allowed\\\"};duplicate=1\",\"expected\":\"Searchers must not attempt to use a gas limit for their operation that is greater than the allowed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Searchers must sign for a\\\"};duplicate=1\",\"expected\":\"Searchers must sign for a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Since auction and\\\"};duplicate=1\",\"expected\":\"Since auction and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SolverBase\\\"};duplicate=1\",\"expected\":\"SolverBase\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SolverGasLimit\\\"};duplicate=1\",\"expected\":\"SolverGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SolverOps\\\"};duplicate=1\",\"expected\":\"SolverOps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The bonded amount is credited to the function caller.\\\"};duplicate=1\",\"expected\":\"The bonded amount is credited to the function caller.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"auctionSolution\\\"};duplicate=1\",\"expected\":\"auctionSolution\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"auctions when two are created for the same liquidation opportunity.\\\"};duplicate=1\",\"expected\":\"auctions when two are created for the same liquidation opportunity.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"both\\\"};duplicate=1\",\"expected\":\"both\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contract. Sending\\\"};duplicate=1\",\"expected\":\"contract. Sending\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"gasPrice\\\"};duplicate=1\",\"expected\":\"gasPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"getSolverGasLimit\\\"};duplicate=1\",\"expected\":\"getSolverGasLimit\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on the\\\"};duplicate=1\",\"expected\":\"on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"payloads can exceed default read/write buffer sizes in popular WebSocket libraries, explicitly configure read and write buffers to greater than 10 KB.\\\"};duplicate=1\",\"expected\":\"payloads can exceed default read/write buffer sizes in popular WebSocket libraries, explicitly configure read and write buffers to greater than 10 KB.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that is exactly equal to the gas price specified by the Chainlink oracle.\\\"};duplicate=1\",\"expected\":\"that is exactly equal to the gas price specified by the Chainlink oracle.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with a higher gas limit will not work.\\\"};duplicate=1\",\"expected\":\"with a higher gas limit will not work.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"b\\\",\\\"reason\\\":\\\"Raw HTML element b is not statically projected\\\"};duplicate=1\",\"component\":\"b\",\"reason\":\"Raw HTML element b is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=3\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=4\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=5\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=6\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=7\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=2\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=3\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=4\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=1\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-atlas\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-ethereum\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-ethereum\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-ethereum\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-ethereum\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-feeds/svr-feeds/searcher-onboarding-ethereum\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TokenizedEquityFeeds\\\",\\\"reason\\\":\\\"Unsupported MDX component TokenizedEquityFeeds\\\"};duplicate=1\",\"component\":\"TokenizedEquityFeeds\",\"reason\":\"Unsupported MDX component TokenizedEquityFeeds\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/coinbase\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/coinbase\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TokenizedEquityFeeds\\\",\\\"reason\\\":\\\"Unsupported MDX component TokenizedEquityFeeds\\\"};duplicate=1\",\"component\":\"TokenizedEquityFeeds\",\"reason\":\"Unsupported MDX component TokenizedEquityFeeds\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/ondo\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/ondo\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TokenizedEquityFeeds\\\",\\\"reason\\\":\\\"Unsupported MDX component TokenizedEquityFeeds\\\"};duplicate=1\",\"component\":\"TokenizedEquityFeeds\",\"reason\":\"Unsupported MDX component TokenizedEquityFeeds\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/providers\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TokenizedEquityFeeds\\\",\\\"reason\\\":\\\"Unsupported MDX component TokenizedEquityFeeds\\\"};duplicate=1\",\"component\":\"TokenizedEquityFeeds\",\"reason\":\"Unsupported MDX component TokenizedEquityFeeds\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/robinhood\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-feeds/tokenized-equity-feeds/robinhood\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"TokenizedEquityFeeds\\\",\\\"reason\\\":\\\"Unsupported MDX component TokenizedEquityFeeds\\\"};duplicate=1\",\"component\":\"TokenizedEquityFeeds\",\"reason\":\"Unsupported MDX component TokenizedEquityFeeds\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TronBox (version 3.3 or higher) - Install globally with\\\"};duplicate=1\",\"expected\":\"TronBox (version 3.3 or higher) - Install globally with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verify your installation using\\\"};duplicate=1\",\"expected\":\"Verify your installation using\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npm install -g tronbox\\\"};duplicate=1\",\"expected\":\"npm install -g tronbox\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nvm use 20\\\"};duplicate=1\",\"expected\":\"nvm use 20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to switch between Node.js versions with\\\"};duplicate=1\",\"expected\":\"to switch between Node.js versions with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/tron\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tronbox version\\\"};duplicate=1\",\"expected\":\"tronbox version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-feeds/us-government-macroeconomic/addresses\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-feeds/using-data-feeds\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"LatestPrice\\\",\\\"reason\\\":\\\"Unsupported MDX component LatestPrice\\\"};duplicate=1\",\"component\":\"LatestPrice\",\"reason\":\"Unsupported MDX component LatestPrice\"}", + "{\"path\":\"data-feeds/using-data-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Active-Active Multi-Site Deployment\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Active-Active Multi-Site Deployment\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Active-Active Setup\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Active-Active Setup\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Example Failover Scenarios\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Example Failover Scenarios\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Example trading flow using Streams Trade\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Example trading flow using Streams Trade\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Global Load Balancer\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Global Load Balancer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Key benefits of the Streams Trade Implementation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Key benefits of the Streams Trade Implementation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Origin Publishing\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Origin Publishing\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Retry Guidance for REST Requests\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Retry Guidance for REST Requests\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation Supported Networks page\\\",\\\"url\\\":\\\"/chainlink-automation/overview/supported-networks\\\"};duplicate=1\",\"expected\":\"Automation Supported Networks page -> /chainlink-automation/overview/supported-networks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation\\\",\\\"url\\\":\\\"/chainlink-automation\\\"};duplicate=1\",\"expected\":\"Chainlink Automation -> /chainlink-automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EIP-3668\\\",\\\"url\\\":\\\"https://eips.ethereum.org/EIPS/eip-3668#use-of-revert-to-convey-call-information\\\"};duplicate=1\",\"expected\":\"EIP-3668 -> https://eips.ethereum.org/EIPS/eip-3668#use-of-revert-to-convey-call-information\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Getting Started\\\",\\\"url\\\":\\\"/data-streams/getting-started\\\"};duplicate=1\",\"expected\":\"Getting Started -> /data-streams/getting-started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"HTTP requests\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-http-client\\\"};duplicate=1\",\"expected\":\"HTTP requests -> /cre/guides/workflow/using-http-client\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Implementing Contingency Logic\\\",\\\"url\\\":\\\"/data-streams/developer-responsibilities#application-code-risks\\\"};duplicate=1\",\"expected\":\"Implementing Contingency Logic -> /data-streams/developer-responsibilities#application-code-risks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"REST API\\\",\\\"url\\\":\\\"/data-streams/reference/data-streams-api/interface-api\\\"};duplicate=1\",\"expected\":\"REST API -> /data-streams/reference/data-streams-api/interface-api\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"WebSocket API\\\",\\\"url\\\":\\\"/data-streams/reference/data-streams-api/interface-ws\\\"};duplicate=1\",\"expected\":\"WebSocket API -> /data-streams/reference/data-streams-api/interface-ws\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"custom logic triggers\\\",\\\"url\\\":\\\"/chainlink-automation/guides/register-upkeep\\\"};duplicate=1\",\"expected\":\"custom logic triggers -> /chainlink-automation/guides/register-upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"log trigger\\\",\\\"url\\\":\\\"/chainlink-automation/concepts/automation-concepts#upkeeps-and-triggers\\\"};duplicate=1\",\"expected\":\"log trigger -> /chainlink-automation/concepts/automation-concepts#upkeeps-and-triggers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain event triggers\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-triggers/evm-log-trigger\\\"};duplicate=1\",\"expected\":\"onchain event triggers -> /cre/guides/workflow/using-triggers/evm-log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain execution\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-write/overview\\\"};duplicate=1\",\"expected\":\"onchain execution -> /cre/guides/workflow/using-evm-client/onchain-write/overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"workflows\\\",\\\"url\\\":\\\"/cre/key-terms#workflow\\\"};duplicate=1\",\"expected\":\"workflows -> /cre/key-terms#workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams - Streams Trade Architecture)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams - Streams Trade Architecture)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams - Streams Trade Example Trading Flow)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams - Streams Trade Example Trading Flow)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". A global load balancer seamlessly manages the system to provide automated and transparent failovers. For advanced use cases, the service publishes available origins using HTTP headers, which enables you to interact directly with specific origin locations if necessary.\\\"};duplicate=1\",\"expected\":\". A global load balancer seamlessly manages the system to provide automated and transparent failovers. For advanced use cases, the service publishes available origins using HTTP headers, which enables you to interact directly with specific origin locations if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A global load balancer sits in front of the distributed deployments. The load balancer directs incoming traffic to the healthiest available site based on real-time health checks and observed load.\\\"};duplicate=1\",\"expected\":\"A global load balancer sits in front of the distributed deployments. The load balancer directs incoming traffic to the healthiest available site based on real-time health checks and observed load.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A user initiates a trade by confirming an initiateTrade transaction in their wallet.\\\"};duplicate=1\",\"expected\":\"A user initiates a trade by confirming an initiateTrade transaction in their wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Active-active is a system configuration strategy where redundant systems remain active simultaneously to serve requests. Incoming requests are distributed across all active resources and load-balanced to provide high availability, scalability, and fault tolerance. This strategy is the opposite of active-passive where a secondary system remains inactive until the primary system fails.\\\"};duplicate=1\",\"expected\":\"Active-active is a system configuration strategy where redundant systems remain active simultaneously to serve requests. Incoming requests are distributed across all active resources and load-balanced to provide high availability, scalability, and fault tolerance. This strategy is the opposite of active-passive where a secondary system remains inactive until the primary system fails.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"As with any networked API, your REST integration must implement retries as standard practice, rather than treating a single failed request as a hard failure:\\\"};duplicate=1\",\"expected\":\"As with any networked API, your REST integration must implement retries as standard practice, rather than treating a single failed request as a hard failure:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automated Execution: No need to build execution logic - Automation handles it\\\"};duplicate=1\",\"expected\":\"Automated Execution: No need to build execution logic - Automation handles it\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automated Failover: In the event of a site failure, traffic is seamlessly rerouted to operational sites without user intervention.\\\"};duplicate=1\",\"expected\":\"Automated Failover: In the event of a site failure, traffic is seamlessly rerouted to operational sites without user intervention.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatic Failover: If one of the origins becomes unavailable, the global load balancer automatically reroutes traffic to the next available origin. This process is transparent to the user and ensures uninterrupted service. During automatic failover, WebSockets experience a reconnect. Failed REST requests must be retried.\\\"};duplicate=1\",\"expected\":\"Automatic Failover: If one of the origins becomes unavailable, the global load balancer automatically reroutes traffic to the next available origin. This process is transparent to the user and ensures uninterrupted service. During automatic failover, WebSockets experience a reconnect. Failed REST requests must be retried.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatic failover handles availability and traffic routing in the following scenarios:\\\"};duplicate=1\",\"expected\":\"Automatic failover handles availability and traffic routing in the following scenarios:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automation monitors the StreamsLookup custom error that triggers Data Streams to process the offchain data request. Data Streams then returns the requested signed report in the checkCallback function for Automation.\\\"};duplicate=1\",\"expected\":\"Automation monitors the StreamsLookup custom error that triggers Data Streams to process the offchain data request. Data Streams then returns the requested signed report in the checkCallback function for Automation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automation passes the report to the Automation Registry, which executes the performUpkeep function defined by the decentralized exchange. The report is included as a variable in the performUpkeep function.\\\"};duplicate=1\",\"expected\":\"Automation passes the report to the Automation Registry, which executes the performUpkeep function defined by the decentralized exchange. The report is included as a variable in the performUpkeep function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE natively includes\\\"};duplicate=1\",\"expected\":\"CRE natively includes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Do not retry on 4xx responses (for example 400 or 401) — these indicate a problem with the request itself, such as invalid parameters or authentication, and will not succeed on retry without a change to the request.\\\"};duplicate=1\",\"expected\":\"Do not retry on 4xx responses (for example 400 or 401) — these indicate a problem with the request itself, such as invalid parameters or authentication, and will not succeed on retry without a change to the request.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ease of Integration: Built-in support for standard DeFi operations\\\"};duplicate=1\",\"expected\":\"Ease of Integration: Built-in support for standard DeFi operations\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Frontrunning Protection: Transaction data and price data revealed atomically onchain\\\"};duplicate=1\",\"expected\":\"Frontrunning Protection: Transaction data and price data revealed atomically onchain\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If retries continue to fail beyond a reasonable number of attempts, treat this as a signal to fall back to your contingency logic — see\\\"};duplicate=1\",\"expected\":\"If retries continue to fail beyond a reasonable number of attempts, treat this as a signal to fall back to your contingency logic — see\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If the response indicates that the report is valid, the upkeep executes the user's requested trade. If the response is invalid, the upkeep rejects the trade and notifies the user.\\\"};duplicate=1\",\"expected\":\"If the response indicates that the report is valid, the upkeep executes the user's requested trade. If the response is invalid, the upkeep rejects the trade and notifies the user.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Load Distribution: Requests are balanced across all active sites to optimize resource usage and response times.\\\"};duplicate=1\",\"expected\":\"Load Distribution: Requests are balanced across all active sites to optimize resource usage and response times.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Manual Traffic Steering: If you want to bypass the load balancer and target a specific site, you can use the origin headers to direct your requests. This manual targeting does not affect the automated failover capabilities provided by the load balancer, so a request will succeed even if the specified origin is unavailable.\\\"};duplicate=1\",\"expected\":\"Manual Traffic Steering: If you want to bypass the load balancer and target a specific site, you can use the origin headers to direct your requests. This manual targeting does not affect the automated failover capabilities provided by the load balancer, so a request will succeed even if the specified origin is unavailable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Multi-origin concurrent WebSocket subscriptions: In order to maintain a highly available and fault tolerant report stream, you can subscribe to up to two available origins simultaneously. This compares the latest consumed timestamp for each stream and discards duplicate reports before merging the report stream locally.\\\"};duplicate=1\",\"expected\":\"Multi-origin concurrent WebSocket subscriptions: In order to maintain a highly available and fault tolerant report stream, you can subscribe to up to two available origins simultaneously. This compares the latest consumed timestamp for each stream and discards duplicate reports before merging the report stream locally.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: Before implementing Streams Trade, ensure that Chainlink Automation is available on your desired network by checking the\\\"};duplicate=1\",\"expected\":\"Note: Before implementing Streams Trade, ensure that Chainlink Automation is available on your desired network by checking the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"One example of how to use Data Streams with Automation is in a decentralized exchange. An example flow might work using the following process:\\\"};duplicate=1\",\"expected\":\"One example of how to use Data Streams with Automation is in a decentralized exchange. An example flow might work using the following process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Read the\\\"};duplicate=1\",\"expected\":\"Read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retry on 5xx responses and network-level errors (timeouts, connection resets). These are generally transient.\\\"};duplicate=1\",\"expected\":\"Retry on 5xx responses and network-level errors (timeouts, connection resets). These are generally transient.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Streams Trade is an alternative implementation that combines Chainlink Data Streams with\\\"};duplicate=1\",\"expected\":\"Streams Trade is an alternative implementation that combines Chainlink Data Streams with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The API services are deployed across multiple distributed data centers. Each active deployment is fully isolated and capable of handling requests independently. This redundancy ensures that the service can withstand the failure of any single site without interrupting service availability.\\\"};duplicate=1\",\"expected\":\"The API services are deployed across multiple distributed data centers. Each active deployment is fully isolated and capable of handling requests independently. This redundancy ensures that the service can withstand the failure of any single site without interrupting service availability.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Automation upkeep monitors the contract for the event. When Automation detects the event, it runs the checkLog function specified in the upkeep contract. The upkeep is defined by the decentralized exchange.\\\"};duplicate=1\",\"expected\":\"The Automation upkeep monitors the contract for the event. When Automation detects the event, it runs the checkLog function specified in the upkeep contract. The upkeep is defined by the decentralized exchange.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Data Streams API services use an active-active setup as a highly available and resilient architecture across multiple distributed and fully isolated origins. This setup ensures that the services are operational even if one origin fails, which provides robust fault tolerance and high availability. This configuration applies to both the\\\"};duplicate=1\",\"expected\":\"The Data Streams API services use an active-active setup as a highly available and resilient architecture across multiple distributed and fully isolated origins. This setup ensures that the services are operational even if one origin fails, which provides robust fault tolerance and high availability. This configuration applies to both the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The checkLog function uses a revert with a custom error called StreamsLookup. This approach aligns with\\\"};duplicate=1\",\"expected\":\"The checkLog function uses a revert with a custom error called StreamsLookup. This approach aligns with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The onchain contract for the decentralized exchange responds by emitting a\\\"};duplicate=1\",\"expected\":\"The onchain contract for the decentralized exchange responds by emitting a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The performUpkeep function calls the verify function on the Data Streams onchain verifier contract and passes the report as a variable.\\\"};duplicate=1\",\"expected\":\"The performUpkeep function calls the verify function on the Data Streams onchain verifier contract and passes the report as a variable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The verifier contract returns a verifierResponse bytes value to the upkeep.\\\"};duplicate=1\",\"expected\":\"The verifier contract returns a verifierResponse bytes value to the upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This is one example of how you can combine Data Streams and Automation, but the systems are highly configurable. You can write your own log triggers or\\\"};duplicate=1\",\"expected\":\"This is one example of how you can combine Data Streams and Automation, but the systems are highly configurable. You can write your own log triggers or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To enable advanced interactions, the service includes the origin information for all of the available origins in the HTTP headers of API responses. This feature allows customers to explicitly target specific deployments if desired. It also allows for concurrent WebSocket consumption from multiple sites, ensuring fault tolerant WebSocket subscriptions, low-latency, and minimized risk of report gaps.\\\"};duplicate=1\",\"expected\":\"To enable advanced interactions, the service includes the origin information for all of the available origins in the HTTP headers of API responses. This feature allows customers to explicitly target specific deployments if desired. It also allows for concurrent WebSocket consumption from multiple sites, ensuring fault tolerant WebSocket subscriptions, low-latency, and minimized risk of report gaps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Trustless Design: Fully decentralized solution with no centralized execution components\\\"};duplicate=1\",\"expected\":\"Trustless Design: Fully decentralized solution with no centralized execution components\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Use exponential backoff with jitter, and cap the number of attempts. GET requests to the REST API are safe to retry.\\\"};duplicate=1\",\"expected\":\"Use exponential backoff with jitter, and cap the number of attempts. GET requests to the REST API are safe to retry.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and conveys the required information through the data in the revert custom error.\\\"};duplicate=1\",\"expected\":\"and conveys the required information through the data in the revert custom error.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and the\\\"};duplicate=1\",\"expected\":\"and the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as first-class capabilities in composable, code-first\\\"};duplicate=1\",\"expected\":\"as first-class capabilities in composable, code-first\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"event.\\\"};duplicate=1\",\"expected\":\"event.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide to learn how to build your own smart contract that retrieves reports from Data Streams using the Streams Trade implementation.\\\"};duplicate=1\",\"expected\":\"guide to learn how to build your own smart contract that retrieves reports from Data Streams using the Streams Trade implementation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to deliver automated trade execution with frontrunning mitigation. Using Chainlink Automation with Data Streams automates trade execution and mitigates frontrunning by executing the transaction before the data is recorded onchain. Chainlink Automation requests data from the Data Streams Aggregation Network. It executes transactions only in response to the data and the verified report, so the transaction is executed correctly and independently from the decentralized application itself.\\\"};duplicate=1\",\"expected\":\"to deliver automated trade execution with frontrunning mitigation. Using Chainlink Automation with Data Streams automates trade execution and mitigates frontrunning by executing the transaction before the data is recorded onchain. Chainlink Automation requests data from the Data Streams Aggregation Network. It executes transactions only in response to the data and the verified report, so the transaction is executed correctly and independently from the decentralized application itself.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to initiate Automation upkeeps for a various array of events. You can configure the StreamsLookup to retrieve multiple reports. You can configure the performUpkeep function to perform a wide variety of actions using the report.\\\"};duplicate=1\",\"expected\":\"to initiate Automation upkeeps for a various array of events. You can configure the StreamsLookup to retrieve multiple reports. You can configure the performUpkeep function to perform a wide variety of actions using the report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"written in Go or TypeScript.\\\"};duplicate=1\",\"expected\":\"written in Go or TypeScript.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/architecture\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contact us\\\"};duplicate=1\",\"expected\":\"Contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The pay-per-verification billing model has been deprecated.\\\"};duplicate=1\",\"expected\":\"The pay-per-verification billing model has been deprecated.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To learn more about the subscription model, please\\\"};duplicate=1\",\"expected\":\"To learn more about the subscription model, please\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contact us\\\"};duplicate=1\",\"expected\":\"contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/concepts/best-practices\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Developer Responsibilities\\\"};duplicate=1\",\"expected\":\"Developer Responsibilities\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/best-practices\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated streams are marked with a\\\"};duplicate=1\",\"expected\":\"Calculated streams are marked with a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Calculated\\\"};duplicate=1\",\"expected\":\"Calculated\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Developer Responsibilities\\\"};duplicate=1\",\"expected\":\"Developer Responsibilities\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"badge in the Data Streams feed list.\\\"};duplicate=1\",\"expected\":\"badge in the Data Streams feed list.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"key differences\\\"};duplicate=1\",\"expected\":\"key differences\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"risks and mitigation\\\"};duplicate=1\",\"expected\":\"risks and mitigation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/concepts/calculated-streams\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"span\\\",\\\"reason\\\":\\\"Raw HTML element span is not statically projected\\\"};duplicate=1\",\"component\":\"span\",\"reason\":\"Raw HTML element span is not statically projected\"}", + "{\"path\":\"data-streams/crypto-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-streams/deprecating-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"StreamsPage\\\",\\\"reason\\\":\\\"Unsupported MDX component StreamsPage\\\"};duplicate=1\",\"component\":\"StreamsPage\",\"reason\":\"Unsupported MDX component StreamsPage\"}", + "{\"path\":\"data-streams/exchange-rate-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(G10 + KRW, SGD, HKD, CNH …)\\\"};duplicate=1\",\"expected\":\"(G10 + KRW, SGD, HKD, CNH …)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(WTI Synthetic Spot)\\\"};duplicate=1\",\"expected\":\"(WTI Synthetic Spot)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(XAU, XAG)\\\"};duplicate=1\",\"expected\":\"(XAU, XAG)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Commodities\\\"};duplicate=1\",\"expected\":\"Commodities\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"FX Majors\\\"};duplicate=1\",\"expected\":\"FX Majors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Precious Metals Spot\\\"};duplicate=1\",\"expected\":\"Precious Metals Spot\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/market-hours\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from: Unix timestamp of the leftmost required bar (inclusive).\\\"};duplicate=1\",\"expected\":\"from: Unix timestamp of the leftmost required bar (inclusive).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from: Unix timestamp of the leftmost required bar (inclusive).\\\"};duplicate=2\",\"expected\":\"from: Unix timestamp of the leftmost required bar (inclusive).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://priceapi.dataengine.chain.link\\\"};duplicate=1\",\"expected\":\"https://priceapi.dataengine.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://priceapi.testnet-dataengine.chain.link\\\"};duplicate=1\",\"expected\":\"https://priceapi.testnet-dataengine.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"login: The user ID.\\\"};duplicate=1\",\"expected\":\"login: The user ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"password: The user's API key.\\\"};duplicate=1\",\"expected\":\"password: The user's API key.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"resolution: Resolution of the data. E.g., \\\\\\\"1m\\\\\\\". Must match\\\"};duplicate=1\",\"expected\":\"resolution: Resolution of the data. E.g., \\\"1m\\\". Must match\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"resolution: Resolution of the data. E.g., \\\\\\\"1m\\\\\\\". Must match\\\"};duplicate=2\",\"expected\":\"resolution: Resolution of the data. E.g., \\\"1m\\\". Must match\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"symbol: The symbol to query.\\\"};duplicate=1\",\"expected\":\"symbol: The symbol to query.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"symbol: The symbol to query.\\\"};duplicate=2\",\"expected\":\"symbol: The symbol to query.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to: Unix timestamp of the rightmost required bar (inclusive).\\\"};duplicate=1\",\"expected\":\"to: Unix timestamp of the rightmost required bar (inclusive).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to: Unix timestamp of the rightmost required bar (inclusive).\\\"};duplicate=2\",\"expected\":\"to: Unix timestamp of the rightmost required bar (inclusive).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=11\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=12\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/candlestick-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=5\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a file named\\\"};duplicate=1\",\"expected\":\"Create a file named\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a file named\\\"};duplicate=2\",\"expected\":\"Create a file named\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run with\\\"};duplicate=1\",\"expected\":\"Run with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"auth-example.go\\\"};duplicate=1\",\"expected\":\"auth-example.go\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"go run auth-example.go\\\"};duplicate=1\",\"expected\":\"go run auth-example.go\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the example code shown below\\\"};duplicate=1\",\"expected\":\"with the example code shown below\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the example code shown below\\\"};duplicate=2\",\"expected\":\"with the example code shown below\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/go-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ws-auth-example.go\\\"};duplicate=1\",\"expected\":\"ws-auth-example.go\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/javascript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a file named\\\"};duplicate=1\",\"expected\":\"Create a file named\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/javascript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a file named\\\"};duplicate=2\",\"expected\":\"Create a file named\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/javascript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"auth-example.js\\\"};duplicate=1\",\"expected\":\"auth-example.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/javascript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the example code shown below\\\"};duplicate=1\",\"expected\":\"with the example code shown below\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/javascript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the example code shown below\\\"};duplicate=2\",\"expected\":\"with the example code shown below\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/javascript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ws-auth-example.js\\\"};duplicate=1\",\"expected\":\"ws-auth-example.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cargo.toml\\\"};duplicate=1\",\"expected\":\"Cargo.toml\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cargo.toml\\\"};duplicate=2\",\"expected\":\"Cargo.toml\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a\\\"};duplicate=1\",\"expected\":\"Create a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a\\\"};duplicate=2\",\"expected\":\"Create a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a\\\"};duplicate=3\",\"expected\":\"Create a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a\\\"};duplicate=4\",\"expected\":\"Create a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run with\\\"};duplicate=1\",\"expected\":\"Run with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run with\\\"};duplicate=2\",\"expected\":\"Run with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cargo run\\\"};duplicate=1\",\"expected\":\"cargo run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cargo run\\\"};duplicate=2\",\"expected\":\"cargo run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"file:\\\"};duplicate=1\",\"expected\":\"file:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"file:\\\"};duplicate=2\",\"expected\":\"file:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"file:\\\"};duplicate=3\",\"expected\":\"file:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"file:\\\"};duplicate=4\",\"expected\":\"file:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"src/main.rs\\\"};duplicate=1\",\"expected\":\"src/main.rs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/rust-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"src/main.rs\\\"};duplicate=2\",\"expected\":\"src/main.rs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a file named\\\"};duplicate=1\",\"expected\":\"Create a file named\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a file named\\\"};duplicate=2\",\"expected\":\"Create a file named\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a\\\"};duplicate=1\",\"expected\":\"Create a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a\\\"};duplicate=2\",\"expected\":\"Create a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NODE_NO_WARNINGS=1 ts-node auth-example.ts\\\"};duplicate=1\",\"expected\":\"NODE_NO_WARNINGS=1 ts-node auth-example.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NODE_NO_WARNINGS=1 ts-node ws-auth-example.ts\\\"};duplicate=1\",\"expected\":\"NODE_NO_WARNINGS=1 ts-node ws-auth-example.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When running the example, you might see a warning about \\\\\\\"Type Stripping is an experimental feature\\\\\\\". This is normal with Node.js v20+ and doesn't affect the functionality of the code. You can suppress this warning by running with\\\"};duplicate=1\",\"expected\":\"When running the example, you might see a warning about \\\"Type Stripping is an experimental feature\\\". This is normal with Node.js v20+ and doesn't affect the functionality of the code. You can suppress this warning by running with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When running the example, you might see a warning about \\\\\\\"Type Stripping is an experimental feature\\\\\\\". This is normal with Node.js v20+ and doesn't affect the functionality of the code. You can suppress this warning by running with\\\"};duplicate=2\",\"expected\":\"When running the example, you might see a warning about \\\"Type Stripping is an experimental feature\\\". This is normal with Node.js v20+ and doesn't affect the functionality of the code. You can suppress this warning by running with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"auth-example.ts\\\"};duplicate=1\",\"expected\":\"auth-example.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"file in your project folder:\\\"};duplicate=1\",\"expected\":\"file in your project folder:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"file in your project folder:\\\"};duplicate=2\",\"expected\":\"file in your project folder:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"instead.\\\"};duplicate=1\",\"expected\":\"instead.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"instead.\\\"};duplicate=2\",\"expected\":\"instead.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tsconfig.json\\\"};duplicate=1\",\"expected\":\"tsconfig.json\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tsconfig.json\\\"};duplicate=2\",\"expected\":\"tsconfig.json\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the example code shown below\\\"};duplicate=1\",\"expected\":\"with the example code shown below\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"with the example code shown below\\\"};duplicate=2\",\"expected\":\"with the example code shown below\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/authentication/typescript-examples\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ws-auth-example.ts\\\"};duplicate=1\",\"expected\":\"ws-auth-example.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"GET /api/v1/reports/bulk?feedIDs=,,...×tamp=\\\"};duplicate=1\",\"expected\":\"GET /api/v1/reports/bulk?feedIDs=,,...×tamp=\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"GET /api/v1/reports/latest?feedID=\\\"};duplicate=1\",\"expected\":\"GET /api/v1/reports/latest?feedID=\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"GET /api/v1/reports/page?feedID=&startTimestamp=&limit=\\\"};duplicate=1\",\"expected\":\"GET /api/v1/reports/page?feedID=&startTimestamp=&limit=\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"GET /api/v1/reports?feedID=×tamp=\\\"};duplicate=1\",\"expected\":\"GET /api/v1/reports?feedID=×tamp=\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"{ \\\\\\\"report\\\\\\\": { \\\\\\\"feedID\\\\\\\": \\\\\\\"Hex encoded feedId.\\\\\\\", \\\\\\\"validFromTimestamp\\\\\\\": \\\\\\\"Report's earliest applicable timestamp (in seconds).\\\\\\\", \\\\\\\"observationsTimestamp\\\\\\\": \\\\\\\"Report's latest applicable timestamp (in seconds).\\\\\\\", \\\\\\\"fullReport\\\\\\\": \\\\\\\"A blob containing the report context and body. Encode the fee token into the payload before passing it to the contract for verification.\\\\\\\" } }\\\"};duplicate=1\",\"expected\":\"{ \\\"report\\\": { \\\"feedID\\\": \\\"Hex encoded feedId.\\\", \\\"validFromTimestamp\\\": \\\"Report's earliest applicable timestamp (in seconds).\\\", \\\"observationsTimestamp\\\": \\\"Report's latest applicable timestamp (in seconds).\\\", \\\"fullReport\\\": \\\"A blob containing the report context and body. Encode the fee token into the payload before passing it to the contract for verification.\\\" } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"{ \\\\\\\"reports\\\\\\\": [ { \\\\\\\"feedID\\\\\\\": \\\\\\\"Hex encoded feedId.\\\\\\\", \\\\\\\"validFromTimestamp\\\\\\\": \\\\\\\"Report's earliest applicable timestamp (in seconds).\\\\\\\", \\\\\\\"observationsTimestamp\\\\\\\": \\\\\\\"Report's latest applicable timestamp (in seconds).\\\\\\\", \\\\\\\"fullReport\\\\\\\": \\\\\\\"A blob containing the report context and body. Encode the fee token into the payload before passing it to the contract for verification.\\\\\\\" } //... ] }\\\"};duplicate=1\",\"expected\":\"{ \\\"reports\\\": [ { \\\"feedID\\\": \\\"Hex encoded feedId.\\\", \\\"validFromTimestamp\\\": \\\"Report's earliest applicable timestamp (in seconds).\\\", \\\"observationsTimestamp\\\": \\\"Report's latest applicable timestamp (in seconds).\\\", \\\"fullReport\\\": \\\"A blob containing the report context and body. Encode the fee token into the payload before passing it to the contract for verification.\\\" } //... ] }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Endpoint\\\",\\\"depth\\\":5};duplicate=1\",\"expected\":\"Endpoint\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Error response codes\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Error response codes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Return a report for multiple FeedIDs at a given timestamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Return a report for multiple FeedIDs at a given timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Return a single report with the latest timestamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Return a single report with the latest timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Return multiple sequential reports for a single stream ID, starting at a given timestamp\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Return multiple sequential reports for a single stream ID, starting at a given timestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sample request\\\",\\\"depth\\\":5};duplicate=1\",\"expected\":\"Sample request\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Sample response\\\",\\\"depth\\\":5};duplicate=1\",\"expected\":\"Sample response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/api/v1/reports/bulk\\\"};duplicate=1\",\"expected\":\"/api/v1/reports/bulk\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/api/v1/reports/latest\\\"};duplicate=1\",\"expected\":\"/api/v1/reports/latest\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"/api/v1/reports/page\\\"};duplicate=1\",\"expected\":\"/api/v1/reports/page\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A user requests access to a stream without the appropriate permission or that does not exist.\\\"};duplicate=1\",\"expected\":\"A user requests access to a stream without the appropriate permission or that does not exist.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Authentication fails, typically because the HMAC signature provided by the client doesn't match the one expected by the server.\\\"};duplicate=1\",\"expected\":\"Authentication fails, typically because the HMAC signature provided by the client doesn't match the one expected by the server.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP GET\\\"};duplicate=1\",\"expected\":\"HTTP GET\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Parameter(s)\\\"};duplicate=1\",\"expected\":\"Parameter(s)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required headers are missing or provided with incorrect values.\\\"};duplicate=1\",\"expected\":\"Required headers are missing or provided with incorrect values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Return a report for multiple FeedIDs at a given timestamp.\\\"};duplicate=1\",\"expected\":\"Return a report for multiple FeedIDs at a given timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Return multiple sequential reports for a single stream ID, starting at a given timestamp.\\\"};duplicate=1\",\"expected\":\"Return multiple sequential reports for a single stream ID, starting at a given timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Status Code\\\"};duplicate=1\",\"expected\":\"Status Code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There is any missing/malformed query argument.\\\"};duplicate=1\",\"expected\":\"There is any missing/malformed query argument.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This error is triggered when:\\\"};duplicate=1\",\"expected\":\"This error is triggered when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This error is triggered when:\\\"};duplicate=2\",\"expected\":\"This error is triggered when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Type\\\"};duplicate=1\",\"expected\":\"Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feedID: A Data Streams stream ID.\\\"};duplicate=1\",\"expected\":\"feedID: A Data Streams stream ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feedID: A Data Streams stream ID.\\\"};duplicate=2\",\"expected\":\"feedID: A Data Streams stream ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"feedIDs: A comma-separated list of Data Streams stream IDs.\\\"};duplicate=1\",\"expected\":\"feedIDs: A comma-separated list of Data Streams stream IDs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://api.dataengine.chain.link\\\"};duplicate=1\",\"expected\":\"https://api.dataengine.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"https://api.testnet-dataengine.chain.link\\\"};duplicate=1\",\"expected\":\"https://api.testnet-dataengine.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"limit (optional): The number of reports to return.\\\"};duplicate=1\",\"expected\":\"limit (optional): The number of reports to return.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"startTimestamp: The Unix timestamp for the first report.\\\"};duplicate=1\",\"expected\":\"startTimestamp: The Unix timestamp for the first report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp: The Unix timestamp for the report.\\\"};duplicate=1\",\"expected\":\"timestamp: The Unix timestamp for the report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"timestamp: The Unix timestamp for the reports.\\\"};duplicate=1\",\"expected\":\"timestamp: The Unix timestamp for the reports.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=11\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-api\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=5\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A user requests access to a stream without the appropriate permission or that does not exist.\\\"};duplicate=1\",\"expected\":\"A user requests access to a stream without the appropriate permission or that does not exist.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Authentication fails, typically because the HMAC signature provided by the client doesn't match the one expected by the server.\\\"};duplicate=1\",\"expected\":\"Authentication fails, typically because the HMAC signature provided by the client doesn't match the one expected by the server.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Required headers are missing or provided with incorrect values.\\\"};duplicate=1\",\"expected\":\"Required headers are missing or provided with incorrect values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There is any missing/malformed query argument.\\\"};duplicate=1\",\"expected\":\"There is any missing/malformed query argument.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This error is triggered when:\\\"};duplicate=1\",\"expected\":\"This error is triggered when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This error is triggered when:\\\"};duplicate=2\",\"expected\":\"This error is triggered when:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/interface-ws\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"# Real-time streaming npx ts-node examples/stream-reports.ts 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 # High Availability streaming npx ts-node examples/stream-reports.ts 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 --ha # Get latest report npx ts-node examples/get-latest-report.ts 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 # List all available feeds npx ts-node examples/list-feeds.ts\\\"};duplicate=1\",\"expected\":\"# Real-time streaming npx ts-node examples/stream-reports.ts 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 # High Availability streaming npx ts-node examples/stream-reports.ts 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 --ha # Get latest report npx ts-node examples/get-latest-report.ts 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 # List all available feeds npx ts-node examples/list-feeds.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// Create stream const stream = client.createStream(feedIds, options?); // Events stream.on('report', (report) => { ... }); stream.on('error', (error) => { ... }); stream.on('disconnected', () => { ... }); stream.on('reconnecting', (info) => { ... }); // Control await stream.connect(); await stream.close(); // Metrics const metrics = stream.getMetrics();\\\"};duplicate=1\",\"expected\":\"// Create stream const stream = client.createStream(feedIds, options?); // Events stream.on('report', (report) => { ... }); stream.on('error', (error) => { ... }); stream.on('disconnected', () => { ... }); stream.on('reconnecting', (info) => { ... }); // Control await stream.connect(); await stream.close(); // Metrics const metrics = stream.getMetrics();\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// Get feeds const feeds = await client.listFeeds(); // Get latest report const report = await client.getLatestReport(feedId); // Get historical report const report = await client.getReportByTimestamp(feedId, timestamp); // Get report page const reports = await client.getReportsPage(feedId, startTime, limit?); // Get bulk reports const reports = await client.getReportsBulk(feedIds, timestamp);\\\"};duplicate=1\",\"expected\":\"// Get feeds const feeds = await client.listFeeds(); // Get latest report const report = await client.getLatestReport(feedId); // Get historical report const report = await client.getReportByTimestamp(feedId, timestamp); // Get report page const reports = await client.getReportsPage(feedId, startTime, limit?); // Get bulk reports const reports = await client.getReportsBulk(feedIds, timestamp);\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"PINO_LEVEL=info npx ts-node examples/metrics-monitoring.ts | npx pino-pretty\\\"};duplicate=1\",\"expected\":\"PINO_LEVEL=info npx ts-node examples/metrics-monitoring.ts | npx pino-pretty\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const client = createClient({ // ...config haMode: true, wsEndpoint: \\\\\\\"wss://ws.dataengine.chain.link\\\\\\\", // Single endpoint (mainnet only) })\\\"};duplicate=1\",\"expected\":\"const client = createClient({ // ...config haMode: true, wsEndpoint: \\\"wss://ws.dataengine.chain.link\\\", // Single endpoint (mainnet only) })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"const m = stream.getMetrics() // m.accepted, m.deduplicated, m.totalReceived // m.partialReconnects, m.fullReconnects // m.activeConnections, m.configuredConnections // m.originStatus: { [origin]: ConnectionStatus }\\\"};duplicate=1\",\"expected\":\"const m = stream.getMetrics() // m.accepted, m.deduplicated, m.totalReceived // m.partialReconnects, m.fullReconnects // m.activeConnections, m.configuredConnections // m.originStatus: { [origin]: ConnectionStatus }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import pino from \\\\\\\"pino\\\\\\\" import { createClient, LogLevel } from \\\\\\\"@chainlink/data-streams-sdk\\\\\\\" const root = pino({ level: process.env.PINO_LEVEL || \\\\\\\"info\\\\\\\" }) const sdk = root.child({ component: \\\\\\\"sdk\\\\\\\" }) const client = createClient({ // ...config logging: { logger: { info: sdk.info.bind(sdk), warn: sdk.warn.bind(sdk), error: sdk.error.bind(sdk), debug: sdk.debug.bind(sdk), }, logLevel: LogLevel.INFO, // For very verbose WS diagnostics, set DEBUG + enableConnectionDebug // logLevel: LogLevel.DEBUG, // enableConnectionDebug: true, }, })\\\"};duplicate=1\",\"expected\":\"import pino from \\\"pino\\\" import { createClient, LogLevel } from \\\"@chainlink/data-streams-sdk\\\" const root = pino({ level: process.env.PINO_LEVEL || \\\"info\\\" }) const sdk = root.child({ component: \\\"sdk\\\" }) const client = createClient({ // ...config logging: { logger: { info: sdk.info.bind(sdk), warn: sdk.warn.bind(sdk), error: sdk.error.bind(sdk), debug: sdk.debug.bind(sdk), }, logLevel: LogLevel.INFO, // For very verbose WS diagnostics, set DEBUG + enableConnectionDebug // logLevel: LogLevel.DEBUG, // enableConnectionDebug: true, }, })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { DataStreamsError } from \\\\\\\"./src\\\\\\\" try { // Any SDK operation } catch (error) { if (error instanceof DataStreamsError) { // Handles ANY SDK error (base class for all error types above) console.log(\\\\\\\"SDK error:\\\\\\\", error.message) } else { // Non-SDK error (network, system, etc.) console.log(\\\\\\\"System error:\\\\\\\", error) } }\\\"};duplicate=1\",\"expected\":\"import { DataStreamsError } from \\\"./src\\\" try { // Any SDK operation } catch (error) { if (error instanceof DataStreamsError) { // Handles ANY SDK error (base class for all error types above) console.log(\\\"SDK error:\\\", error.message) } else { // Non-SDK error (network, system, etc.) console.log(\\\"System error:\\\", error) } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { ValidationError, AuthenticationError, APIError, ReportDecodingError, WebSocketError, OriginDiscoveryError, MultiConnectionError, } from \\\\\\\"./src\\\\\\\" // REST API error handling try { const report = await client.getLatestReport(feedId) } catch (error) { if (error instanceof ValidationError) { // Invalid feed ID or parameters } else if (error instanceof AuthenticationError) { // Check API credentials } else if (error instanceof APIError) { // Server error - check error.statusCode (429, 500, etc.) } else if (error instanceof ReportDecodingError) { // Corrupted or unsupported report format } } // Streaming error handling stream.on(\\\\\\\"error\\\\\\\", (error) => { if (error instanceof WebSocketError) { // Connection issues - retry or fallback } else if (error instanceof OriginDiscoveryError) { // HA discovery failed - falls back to static config } else if (error instanceof MultiConnectionError) { // All HA connections failed - critical } })\\\"};duplicate=1\",\"expected\":\"import { ValidationError, AuthenticationError, APIError, ReportDecodingError, WebSocketError, OriginDiscoveryError, MultiConnectionError, } from \\\"./src\\\" // REST API error handling try { const report = await client.getLatestReport(feedId) } catch (error) { if (error instanceof ValidationError) { // Invalid feed ID or parameters } else if (error instanceof AuthenticationError) { // Check API credentials } else if (error instanceof APIError) { // Server error - check error.statusCode (429, 500, etc.) } else if (error instanceof ReportDecodingError) { // Corrupted or unsupported report format } } // Streaming error handling stream.on(\\\"error\\\", (error) => { if (error instanceof WebSocketError) { // Connection issues - retry or fallback } else if (error instanceof OriginDiscoveryError) { // HA discovery failed - falls back to static config } else if (error instanceof MultiConnectionError) { // All HA connections failed - critical } })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { createClient, LogLevel } from \\\\\\\"@chainlink/data-streams-sdk\\\\\\\" // Silent mode (default) - Zero overhead const client = createClient({/* ... config without logging */}) // Basic console logging const client = createClient({ // ... other config logging: { logger: { info: console.log, warn: console.warn, error: console.error, }, }, })\\\"};duplicate=1\",\"expected\":\"import { createClient, LogLevel } from \\\"@chainlink/data-streams-sdk\\\" // Silent mode (default) - Zero overhead const client = createClient({/* ... config without logging */}) // Basic console logging const client = createClient({ // ... other config logging: { logger: { info: console.log, warn: console.warn, error: console.error, }, }, })\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import { decodeReport } from \\\\\\\"@chainlink/data-streams-sdk\\\\\\\" const decoded = decodeReport(report.fullReport, report.feedID)\\\"};duplicate=1\",\"expected\":\"import { decodeReport } from \\\"@chainlink/data-streams-sdk\\\" const decoded = decodeReport(report.fullReport, report.feedID)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"interface BaseFields { version: \\\\\\\"V2\\\\\\\" | \\\\\\\"V3\\\\\\\" | \\\\\\\"V4\\\\\\\" | \\\\\\\"V5\\\\\\\" | \\\\\\\"V6\\\\\\\" | \\\\\\\"V7\\\\\\\" | \\\\\\\"V8\\\\\\\" | \\\\\\\"V9\\\\\\\" | \\\\\\\"V10\\\\\\\" nativeFee: bigint linkFee: bigint expiresAt: number feedID: string validFromTimestamp: number observationsTimestamp: number }\\\"};duplicate=1\",\"expected\":\"interface BaseFields { version: \\\"V2\\\" | \\\"V3\\\" | \\\"V4\\\" | \\\"V5\\\" | \\\"V6\\\" | \\\"V7\\\" | \\\"V8\\\" | \\\"V9\\\" | \\\"V10\\\" nativeFee: bigint linkFee: bigint expiresAt: number feedID: string validFromTimestamp: number observationsTimestamp: number }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"interface LoggingConfig { /** External logger functions (console, winston, pino, etc.) */ logger?: { debug?: (message: string, ...args: any[]) => void info?: (message: string, ...args: any[]) => void warn?: (message: string, ...args: any[]) => void error?: (message: string, ...args: any[]) => void } /** Minimum logging level - filters out lower priority logs */ logLevel?: LogLevel // DEBUG (0) | INFO (1) | WARN (2) | ERROR (3) /** Enable WebSocket ping/pong and connection state debugging logs */ enableConnectionDebug?: boolean }\\\"};duplicate=1\",\"expected\":\"interface LoggingConfig { /** External logger functions (console, winston, pino, etc.) */ logger?: { debug?: (message: string, ...args: any[]) => void info?: (message: string, ...args: any[]) => void warn?: (message: string, ...args: any[]) => void error?: (message: string, ...args: any[]) => void } /** Minimum logging level - filters out lower priority logs */ logLevel?: LogLevel // DEBUG (0) | INFO (1) | WARN (2) | ERROR (3) /** Enable WebSocket ping/pong and connection state debugging logs */ enableConnectionDebug?: boolean }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"interface StreamOptions { maxReconnectAttempts?: number // Default: 5 // Base delay (in ms) for exponential backoff. // Actual delay grows as: base * 2^(attempt-1) with jitter, capped at 10000ms. // Default: 1000ms; user-provided values are clamped to the safe range [200ms, 10000ms]. reconnectInterval?: number }\\\"};duplicate=1\",\"expected\":\"interface StreamOptions { maxReconnectAttempts?: number // Default: 5 // Base delay (in ms) for exponential backoff. // Actual delay grows as: base * 2^(attempt-1) with jitter, capped at 10000ms. // Default: 1000ms; user-provided values are clamped to the safe range [200ms, 10000ms]. reconnectInterval?: number }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npm test # All tests npm run test:unit # Unit tests only npm run test:integration # Integration tests only\\\"};duplicate=1\",\"expected\":\"npm test # All tests npm run test:unit # Unit tests only npm run test:integration # Integration tests only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"setInterval(() => { const m = stream.getMetrics() console.log(`accepted=${m.accepted} dedup=${m.deduplicated} active=${m.activeConnections}/${m.configuredConnections}`) }, 30000)\\\"};duplicate=1\",\"expected\":\"setInterval(() => { const m = stream.getMetrics() console.log(`accepted=${m.accepted} dedup=${m.deduplicated} active=${m.activeConnections}/${m.configuredConnections}`) }, 30000)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"API Reference\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"API Reference\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Common Fields\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Common Fields\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Error Handling\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Error Handling\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Error Types Overview\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Error Types Overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Feed IDs\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Feed IDs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"High Availability Mode\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"High Availability Mode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Log Levels\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Log Levels\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Logging (Pino/Winston/Console)\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Logging (Pino/Winston/Console)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Logging Configuration Options\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Logging Configuration Options\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Metrics (stream.getMetrics())\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Metrics (stream.getMetrics())\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Observability (Logs & Metrics)\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Observability (Logs & Metrics)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Quick Decoder Usage\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Quick Decoder Usage\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Quick Start\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Quick Start\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"REST API\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"REST API\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Report Format\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Report Format\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Schema Auto-Detection\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Schema Auto-Detection\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Schema-Specific Fields\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Schema-Specific Fields\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Stream Options\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Stream Options\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Streaming\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Streaming\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Testing\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Testing\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Usage Examples\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Usage Examples\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"🔍 DEBUG\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"🔍 DEBUG\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"🔴 ERROR\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"🔴 ERROR\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"🔵 INFO\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"🔵 INFO\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"🟡 WARN\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"🟡 WARN\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"SDK repo examples\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/data-streams-sdk/tree/main/typescript/examples\\\"};duplicate=1\",\"expected\":\"SDK repo examples -> https://github.com/smartcontractkit/data-streams-sdk/tree/main/typescript/examples\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"complete list of available reports and their schemas\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-overview\\\"};duplicate=1\",\"expected\":\"complete list of available reports and their schemas -> /data-streams/reference/report-schema-overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"examples/metrics-monitoring.ts\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/data-streams-sdk/blob/main/typescript/examples/metrics-monitoring.ts\\\"};duplicate=1\",\"expected\":\"examples/metrics-monitoring.ts -> https://github.com/smartcontractkit/data-streams-sdk/blob/main/typescript/examples/metrics-monitoring.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"from the report schema overview\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-overview\\\"};duplicate=1\",\"expected\":\"from the report schema overview -> /data-streams/reference/report-schema-overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you installed the package from npm, copy the example code into your project and change imports to\\\"};duplicate=1\",\"expected\":\". If you installed the package from npm, copy the example code into your project and change imports to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"@chainlink/data-streams-sdk\\\"};duplicate=1\",\"expected\":\"@chainlink/data-streams-sdk\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"API request failures\\\"};duplicate=1\",\"expected\":\"API request failures\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"APIError\\\"};duplicate=1\",\"expected\":\"APIError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"All HA connections failed\\\"};duplicate=1\",\"expected\":\"All HA connections failed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"All reports include standard metadata:\\\"};duplicate=1\",\"expected\":\"All reports include standard metadata:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Auth header generation\\\"};duplicate=1\",\"expected\":\"Auth header generation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Authentication failures\\\"};duplicate=1\",\"expected\":\"Authentication failures\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"AuthenticationError\\\"};duplicate=1\",\"expected\":\"AuthenticationError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatic failover between connections\\\"};duplicate=1\",\"expected\":\"Automatic failover between connections\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatic origin discovery to find available endpoints\\\"};duplicate=1\",\"expected\":\"Automatic origin discovery to find available endpoints\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Catch-all error handling:\\\"};duplicate=1\",\"expected\":\"Catch-all error handling:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Client initialization\\\"};duplicate=1\",\"expected\":\"Client initialization\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Command-line with pretty output:\\\"};duplicate=1\",\"expected\":\"Command-line with pretty output:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compatible with: console, winston, pino, and any logger with debug/info/warn/error methods. See examples/logging-basic.ts for complete integration examples.\\\"};duplicate=1\",\"expected\":\"Compatible with: console, winston, pino, and any logger with debug/info/warn/error methods. See examples/logging-basic.ts for complete integration examples.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Complete examples See the\\\"};duplicate=1\",\"expected\":\"Complete examples See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration validation\\\"};duplicate=1\",\"expected\":\"Configuration validation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Configuration: Logging setup, debugging, monitoring integration\\\"};duplicate=1\",\"expected\":\"Configuration: Logging setup, debugging, monitoring integration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Connection failures, protocol errors\\\"};duplicate=1\",\"expected\":\"Connection failures, protocol errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Connection mode determination\\\"};duplicate=1\",\"expected\":\"Connection mode determination\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Connection monitoring: The optional connectionStatusCallback can be used to integrate with external monitoring systems. The SDK already provides comprehensive connection logs, so this callback is primarily useful for custom alerting or metrics collection. See\\\"};duplicate=1\",\"expected\":\"Connection monitoring: The optional connectionStatusCallback can be used to integrate with external monitoring systems. The SDK already provides comprehensive connection logs, so this callback is primarily useful for custom alerting or metrics collection. See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Connection status changes\\\"};duplicate=1\",\"expected\":\"Connection status changes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Connection timeouts\\\"};duplicate=1\",\"expected\":\"Connection timeouts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Corrupted report data, unsupported versions\\\"};duplicate=1\",\"expected\":\"Corrupted report data, unsupported versions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Critical failures only\\\"};duplicate=1\",\"expected\":\"Critical failures only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Error Type\\\"};duplicate=1\",\"expected\":\"Error Type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Everything in ERROR +\\\"};duplicate=1\",\"expected\":\"Everything in ERROR +\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Everything in INFO +\\\"};duplicate=1\",\"expected\":\"Everything in INFO +\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Everything in WARN +\\\"};duplicate=1\",\"expected\":\"Everything in WARN +\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Example Use: Debugging & development only\\\"};duplicate=1\",\"expected\":\"Example Use: Debugging & development only\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Example Use: Development & staging\\\"};duplicate=1\",\"expected\":\"Example Use: Development & staging\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Example Use: Production alerts & monitoring\\\"};duplicate=1\",\"expected\":\"Example Use: Production alerts & monitoring\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Example Use: Production environments\\\"};duplicate=1\",\"expected\":\"Example Use: Production environments\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fallback to static origins\\\"};duplicate=1\",\"expected\":\"Fallback to static origins\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Feed ID validation\\\"};duplicate=1\",\"expected\":\"Feed ID validation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For available feed IDs, select your desired report\\\"};duplicate=1\",\"expected\":\"For available feed IDs, select your desired report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For complete field definitions, see the\\\"};duplicate=1\",\"expected\":\"For complete field definitions, see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For debugging: Use LogLevel.DEBUG for full diagnostics and enableConnectionDebug: true to see WebSocket ping/pong messages and connection state transitions.\\\"};duplicate=1\",\"expected\":\"For debugging: Use LogLevel.DEBUG for full diagnostics and enableConnectionDebug: true to see WebSocket ping/pong messages and connection state transitions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HA degraded performance\\\"};duplicate=1\",\"expected\":\"HA degraded performance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HA discovery failures\\\"};duplicate=1\",\"expected\":\"HA discovery failures\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HA mode establishes multiple simultaneous connections for zero-downtime operation:\\\"};duplicate=1\",\"expected\":\"HA mode establishes multiple simultaneous connections for zero-downtime operation:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"HTTP 4xx/5xx, network timeouts, rate limits\\\"};duplicate=1\",\"expected\":\"HTTP 4xx/5xx, network timeouts, rate limits\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"How it works: When haMode is true, the SDK automatically discovers multiple origin endpoints behind the single URL and establishes separate connections to each origin.\\\"};duplicate=1\",\"expected\":\"How it works: When haMode is true, the SDK automatically discovers multiple origin endpoints behind the single URL and establishes separate connections to each origin.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Important: HA mode is only available on mainnet endpoints.\\\"};duplicate=1\",\"expected\":\"Important: HA mode is only available on mainnet endpoints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"InsufficientConnectionsError\\\"};duplicate=1\",\"expected\":\"InsufficientConnectionsError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Invalid credentials, HMAC failures\\\"};duplicate=1\",\"expected\":\"Invalid credentials, HMAC failures\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Invalid data warnings\\\"};duplicate=1\",\"expected\":\"Invalid data warnings\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Invalid feed IDs, timestamps, parameters\\\"};duplicate=1\",\"expected\":\"Invalid feed IDs, timestamps, parameters\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key Properties\\\"};duplicate=1\",\"expected\":\"Key Properties\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MultiConnectionError\\\"};duplicate=1\",\"expected\":\"MultiConnectionError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Network connection errors\\\"};duplicate=1\",\"expected\":\"Network connection errors\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Origin discovery process\\\"};duplicate=1\",\"expected\":\"Origin discovery process\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Origin tracking (HA mode)\\\"};duplicate=1\",\"expected\":\"Origin tracking (HA mode)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Origin tracking in HA mode shows which specific endpoint received each report.\\\"};duplicate=1\",\"expected\":\"Origin tracking in HA mode shows which specific endpoint received each report.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"OriginDiscoveryError\\\"};duplicate=1\",\"expected\":\"OriginDiscoveryError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Partial reconnections\\\"};duplicate=1\",\"expected\":\"Partial reconnections\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PartialConnectionFailureError\\\"};duplicate=1\",\"expected\":\"PartialConnectionFailureError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pass your logger to the SDK and choose a verbosity level. For deep WS diagnostics, enable connection debug.\\\"};duplicate=1\",\"expected\":\"Pass your logger to the SDK and choose a verbosity level. For deep WS diagnostics, enable connection debug.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Per-connection monitoring and statistics\\\"};duplicate=1\",\"expected\":\"Per-connection monitoring and statistics\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Quick Commands:\\\"};duplicate=1\",\"expected\":\"Quick Commands:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"REST API: Latest reports, historical data, bulk operations, feed management\\\"};duplicate=1\",\"expected\":\"REST API: Latest reports, historical data, bulk operations, feed management\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refer to examples/metrics-monitoring.ts for a full metrics dashboard example.\\\"};duplicate=1\",\"expected\":\"Refer to examples/metrics-monitoring.ts for a full metrics dashboard example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report decoding failures\\\"};duplicate=1\",\"expected\":\"Report decoding failures\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report decoding steps\\\"};duplicate=1\",\"expected\":\"Report decoding steps\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report deduplication across connections\\\"};duplicate=1\",\"expected\":\"Report deduplication across connections\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report retrievals\\\"};duplicate=1\",\"expected\":\"Report retrievals\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ReportDecodingError\\\"};duplicate=1\",\"expected\":\"ReportDecodingError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Request/response details\\\"};duplicate=1\",\"expected\":\"Request/response details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retry attempts\\\"};duplicate=1\",\"expected\":\"Retry attempts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Simple periodic print (example):\\\"};duplicate=1\",\"expected\":\"Simple periodic print (example):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Some HA connections failed\\\"};duplicate=1\",\"expected\":\"Some HA connections failed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stream connections\\\"};duplicate=1\",\"expected\":\"Stream connections\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Streaming: Basic streaming, HA mode, metrics monitoring\\\"};duplicate=1\",\"expected\":\"Streaming: Basic streaming, HA mode, metrics monitoring\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Successful API calls\\\"};duplicate=1\",\"expected\":\"Successful API calls\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SDK automatically detects and decodes all report versions based on Feed ID patterns:\\\"};duplicate=1\",\"expected\":\"The SDK automatically detects and decodes all report versions based on Feed ID patterns:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SDK is designed to plug into your existing observability stack.\\\"};duplicate=1\",\"expected\":\"The SDK is designed to plug into your existing observability stack.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The stream.getMetrics() API provides a complete snapshot for dashboards and alerts:\\\"};duplicate=1\",\"expected\":\"The stream.getMetrics() API provides a complete snapshot for dashboards and alerts:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unexpected crashes\\\"};duplicate=1\",\"expected\":\"Unexpected crashes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Using Pino (structured JSON):\\\"};duplicate=1\",\"expected\":\"Using Pino (structured JSON):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V10: Feed IDs starting with 0x000a (Tokenized Equity)\\\"};duplicate=1\",\"expected\":\"V10: Feed IDs starting with 0x000a (Tokenized Equity)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V10: price: bigint, lastUpdateTimestamp: number, marketStatus: MarketStatus, currentMultiplier: bigint, newMultiplier: bigint, activationDateTime: number, tokenizedPrice: bigint - Tokenized equity data\\\"};duplicate=1\",\"expected\":\"V10: price: bigint, lastUpdateTimestamp: number, marketStatus: MarketStatus, currentMultiplier: bigint, newMultiplier: bigint, activationDateTime: number, tokenizedPrice: bigint - Tokenized equity data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V2/V3/V4: price: bigint - Standard price data\\\"};duplicate=1\",\"expected\":\"V2/V3/V4: price: bigint - Standard price data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V2: Feed IDs starting with 0x0002\\\"};duplicate=1\",\"expected\":\"V2: Feed IDs starting with 0x0002\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V3: Feed IDs starting with 0x0003 (Crypto Streams)\\\"};duplicate=1\",\"expected\":\"V3: Feed IDs starting with 0x0003 (Crypto Streams)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V3: bid: bigint, ask: bigint - Crypto bid/ask spreads\\\"};duplicate=1\",\"expected\":\"V3: bid: bigint, ask: bigint - Crypto bid/ask spreads\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V4: Feed IDs starting with 0x0004 (Real-World Assets)\\\"};duplicate=1\",\"expected\":\"V4: Feed IDs starting with 0x0004 (Real-World Assets)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V4: marketStatus: MarketStatus - Real-world asset market status\\\"};duplicate=1\",\"expected\":\"V4: marketStatus: MarketStatus - Real-world asset market status\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V5: Feed IDs starting with 0x0005\\\"};duplicate=1\",\"expected\":\"V5: Feed IDs starting with 0x0005\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V5: rate: bigint, timestamp: number, duration: number - Interest rate data with observation timestamp and duration\\\"};duplicate=1\",\"expected\":\"V5: rate: bigint, timestamp: number, duration: number - Interest rate data with observation timestamp and duration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V6: Feed IDs starting with 0x0006 (Multiple Price Values)\\\"};duplicate=1\",\"expected\":\"V6: Feed IDs starting with 0x0006 (Multiple Price Values)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V6: price: bigint, price2: bigint, price3: bigint, price4: bigint, price5: bigint - Multiple price values in a single payload\\\"};duplicate=1\",\"expected\":\"V6: price: bigint, price2: bigint, price3: bigint, price4: bigint, price5: bigint - Multiple price values in a single payload\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V7: Feed IDs starting with 0x0007\\\"};duplicate=1\",\"expected\":\"V7: Feed IDs starting with 0x0007\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V7: exchangeRate: bigint - Exchange rate data\\\"};duplicate=1\",\"expected\":\"V7: exchangeRate: bigint - Exchange rate data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V8: Feed IDs starting with 0x0008 (Non-OTC RWA)\\\"};duplicate=1\",\"expected\":\"V8: Feed IDs starting with 0x0008 (Non-OTC RWA)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V8: midPrice: bigint, lastUpdateTimestamp: number, marketStatus: MarketStatus - Non-OTC RWA data\\\"};duplicate=1\",\"expected\":\"V8: midPrice: bigint, lastUpdateTimestamp: number, marketStatus: MarketStatus - Non-OTC RWA data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V9: Feed IDs starting with 0x0009 (NAV Fund Data)\\\"};duplicate=1\",\"expected\":\"V9: Feed IDs starting with 0x0009 (NAV Fund Data)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"V9: navPerShare: bigint, navDate: number, aum: bigint, ripcord: number - NAV fund data\\\"};duplicate=1\",\"expected\":\"V9: navPerShare: bigint, navDate: number, aum: bigint, ripcord: number - NAV fund data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ValidationError\\\"};duplicate=1\",\"expected\":\"ValidationError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WebSocket ping/pong\\\"};duplicate=1\",\"expected\":\"WebSocket ping/pong\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"WebSocketError\\\"};duplicate=1\",\"expected\":\"WebSocketError\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When Thrown\\\"};duplicate=1\",\"expected\":\"When Thrown\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"availableConnections, requiredConnections\\\"};duplicate=1\",\"expected\":\"availableConnections, requiredConnections\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"cause, message\\\"};duplicate=1\",\"expected\":\"cause, message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"failedConnections, totalConnections\\\"};duplicate=1\",\"expected\":\"failedConnections, totalConnections\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a complete implementation example.\\\"};duplicate=1\",\"expected\":\"for a complete implementation example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for detailed usage and setup. Available examples include:\\\"};duplicate=1\",\"expected\":\"for detailed usage and setup. Available examples include:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=1\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=2\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=3\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=4\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"message\\\"};duplicate=5\",\"expected\":\"message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nativeFee and linkFee are legacy onchain verification fee fields in the report schema. Data Streams uses subscription-based billing, so these fields are not used to charge per-verification fees.\\\"};duplicate=1\",\"expected\":\"nativeFee and linkFee are legacy onchain verification fee fields in the report schema. Data Streams uses subscription-based billing, so these fields are not used to charge per-verification fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"statusCode, message\\\"};duplicate=1\",\"expected\":\"statusCode, message\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/data-streams-api/ts-sdk\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/interface-ws\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;artifact\",\"reason\":\"No Markdown artifact was built\"}", + "{\"path\":\"data-streams/reference/onchain-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;artifact\",\"reason\":\"No Markdown artifact was built\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(identical fields;\\\"};duplicate=1\",\"expected\":\"(identical fields;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\")\\\"};duplicate=1\",\"expected\":\")\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=10\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=11\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=12\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=13\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=14\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=15\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=16\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=17\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=18\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=19\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=2\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=3\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=4\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=5\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=6\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=7\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=8\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=9\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Crypto Advanced (v3) - DEX State Price\\\"};duplicate=1\",\"expected\":\"Crypto Advanced (v3) - DEX State Price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Crypto Advanced (v3)\\\"};duplicate=1\",\"expected\":\"Crypto Advanced (v3)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Crypto Standard (v2)\\\"};duplicate=1\",\"expected\":\"Crypto Standard (v2)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Crypto prices (single price point)\\\"};duplicate=1\",\"expected\":\"Crypto prices (single price point)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cryptocurrency\\\"};duplicate=1\",\"expected\":\"Cryptocurrency\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"DEX state crypto prices\\\"};duplicate=1\",\"expected\":\"DEX state crypto prices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Exchange Rate\\\"};duplicate=1\",\"expected\":\"Exchange Rate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key Fields\\\"};duplicate=1\",\"expected\":\"Key Fields\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Net Asset Value (NAV), Proof of Reserve (POR)\\\"};duplicate=1\",\"expected\":\"Net Asset Value (NAV), Proof of Reserve (POR)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RWA Advanced (v11)\\\"};duplicate=1\",\"expected\":\"RWA Advanced (v11)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RWA Standard (v8)\\\"};duplicate=1\",\"expected\":\"RWA Standard (v8)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"RWA\\\"};duplicate=1\",\"expected\":\"RWA\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Real-world asset prices (multiple price points and enhanced market data)\\\"};duplicate=1\",\"expected\":\"Real-world asset prices (multiple price points and enhanced market data)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Real-world asset prices (single price point)\\\"};duplicate=1\",\"expected\":\"Real-world asset prices (single price point)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Redemption Rates (v7)\\\"};duplicate=1\",\"expected\":\"Redemption Rates (v7)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Redemption rates of staked assets\\\"};duplicate=1\",\"expected\":\"Redemption rates of staked assets\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report Schema\\\"};duplicate=1\",\"expected\":\"Report Schema\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SmartData (v9)\\\"};duplicate=1\",\"expected\":\"SmartData (v9)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"SmartData\\\"};duplicate=1\",\"expected\":\"SmartData\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Standard crypto prices\\\"};duplicate=1\",\"expected\":\"Standard crypto prices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stream Category\\\"};duplicate=1\",\"expected\":\"Stream Category\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokenized Asset (v10)\\\"};duplicate=1\",\"expected\":\"Tokenized Asset (v10)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokenized Asset\\\"};duplicate=1\",\"expected\":\"Tokenized Asset\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tokenized equities\\\"};duplicate=1\",\"expected\":\"Tokenized equities\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Use Case / Purpose\\\"};duplicate=1\",\"expected\":\"Use Case / Purpose\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"askVolume\\\"};duplicate=1\",\"expected\":\"askVolume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ask\\\"};duplicate=1\",\"expected\":\"ask\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ask\\\"};duplicate=2\",\"expected\":\"ask\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ask\\\"};duplicate=3\",\"expected\":\"ask\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"aum\\\"};duplicate=1\",\"expected\":\"aum\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bidVolume\\\"};duplicate=1\",\"expected\":\"bidVolume\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bid\\\"};duplicate=1\",\"expected\":\"bid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bid\\\"};duplicate=2\",\"expected\":\"bid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"bid\\\"};duplicate=3\",\"expected\":\"bid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"currentMultiplier\\\"};duplicate=1\",\"expected\":\"currentMultiplier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"details\\\"};duplicate=1\",\"expected\":\"details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"exchangeRate\\\"};duplicate=1\",\"expected\":\"exchangeRate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastTradedPrice\\\"};duplicate=1\",\"expected\":\"lastTradedPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus\\\"};duplicate=1\",\"expected\":\"marketStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus\\\"};duplicate=2\",\"expected\":\"marketStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus\\\"};duplicate=3\",\"expected\":\"marketStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice\\\"};duplicate=1\",\"expected\":\"midPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"mid\\\"};duplicate=1\",\"expected\":\"mid\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"navDate\\\"};duplicate=1\",\"expected\":\"navDate\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"navPerShare\\\"};duplicate=1\",\"expected\":\"navPerShare\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"newMultiplier\\\"};duplicate=1\",\"expected\":\"newMultiplier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"price\\\"};duplicate=1\",\"expected\":\"price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"price\\\"};duplicate=2\",\"expected\":\"price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"price\\\"};duplicate=3\",\"expected\":\"price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"price\\\"};duplicate=4\",\"expected\":\"price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ripcord\\\"};duplicate=1\",\"expected\":\"ripcord\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"tokenizedPrice\\\"};duplicate=1\",\"expected\":\"tokenizedPrice\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=10\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=11\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=12\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=13\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=14\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=6\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=7\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=8\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=9\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=10\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=11\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=12\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=13\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=14\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=15\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=16\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=17\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=18\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=19\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=20\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=21\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=22\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=23\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=24\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=25\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=26\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=27\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=3\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=4\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=5\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=6\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=7\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=8\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=9\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=1\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=1\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=1\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=10\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=11\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=12\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=13\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=14\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=15\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=16\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=17\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=18\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=19\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=2\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=20\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=21\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=22\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=23\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=24\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=25\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=26\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=27\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=28\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=29\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=3\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=4\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=5\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=6\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=7\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=8\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=9\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=1\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=2\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=3\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=4\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=1\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=1\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=2\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=3\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=4\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=5\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=6\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=7\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=8\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=9\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v10\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"24/5 US Equities feeds\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"24/5 US Equities feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"24/5 US Equities\\\",\\\"url\\\":\\\"/data-streams/rwa-streams/24-5-us-equities-user-guide\\\"};duplicate=1\",\"expected\":\"24/5 US Equities -> /data-streams/rwa-streams/24-5-us-equities-user-guide\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Market Hours (APAC Equities)\\\",\\\"url\\\":\\\"/data-streams/market-hours#apac-equities\\\"};duplicate=1\",\"expected\":\"Market Hours (APAC Equities) -> /data-streams/market-hours#apac-equities\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or other timestamp fields — timestamps indicate when data was last recorded, not whether the market is currently active.\\\"};duplicate=1\",\"expected\":\", or other timestamp fields — timestamps indicate when data was last recorded, not whether the market is currently active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=2\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0\\\"};duplicate=1\",\"expected\":\"0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1\\\"};duplicate=1\",\"expected\":\"1\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"2\\\"};duplicate=1\",\"expected\":\"2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"3\\\"};duplicate=1\",\"expected\":\"3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4:00am–9:30am Mon–Fri\\\"};duplicate=1\",\"expected\":\"4:00am–9:30am Mon–Fri\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4:00pm–8:00pm Mon–Fri\\\"};duplicate=1\",\"expected\":\"4:00pm–8:00pm Mon–Fri\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"4\\\"};duplicate=1\",\"expected\":\"4\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"5\\\"};duplicate=1\",\"expected\":\"5\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"8:00pm–4:00am Sun evening–Fri morning\\\"};duplicate=1\",\"expected\":\"8:00pm–4:00am Sun evening–Fri morning\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"9:30am–4:00pm Mon–Fri\\\"};duplicate=1\",\"expected\":\"9:30am–4:00pm Mon–Fri\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Always use\\\"};duplicate=1\",\"expected\":\"Always use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Closed\\\"};duplicate=1\",\"expected\":\"Closed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"During closing auction periods and daily lunch breaks on APAC exchanges, marketStatus is 5 (Closed) even though the exchange trading day has not fully ended. See\\\"};duplicate=1\",\"expected\":\"During closing auction periods and daily lunch breaks on APAC exchanges, marketStatus is 5 (Closed) even though the exchange trading day has not fully ended. See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Extended hours after regular trading session\\\"};duplicate=1\",\"expected\":\"Extended hours after regular trading session\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Extended hours before regular trading session\\\"};duplicate=1\",\"expected\":\"Extended hours before regular trading session\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hours (ET)\\\"};duplicate=1\",\"expected\":\"Hours (ET)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Market status cannot be determined\\\"};duplicate=1\",\"expected\":\"Market status cannot be determined\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"N/A\\\"};duplicate=1\",\"expected\":\"N/A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overnight session with limited liquidity\\\"};duplicate=1\",\"expected\":\"Overnight session with limited liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Overnight\\\"};duplicate=1\",\"expected\":\"Overnight\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Post-market\\\"};duplicate=1\",\"expected\":\"Post-market\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Pre-market\\\"};duplicate=1\",\"expected\":\"Pre-market\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Primary trading session with highest liquidity\\\"};duplicate=1\",\"expected\":\"Primary trading session with highest liquidity\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Regular hours\\\"};duplicate=1\",\"expected\":\"Regular hours\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Status\\\"};duplicate=1\",\"expected\":\"Status\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unknown\\\"};duplicate=1\",\"expected\":\"Unknown\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used by\\\"};duplicate=1\",\"expected\":\"Used by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Values\\\"};duplicate=1\",\"expected\":\"Values\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"are reserved for 24/5 session types and will not appear on these feeds. On standard-hours feeds,\\\"};duplicate=1\",\"expected\":\"are reserved for 24/5 session types and will not appear on these feeds. On standard-hours feeds,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"covers intraday closures such as lunch breaks and closing auctions — not only weekends and holidays.\\\"};duplicate=1\",\"expected\":\"covers intraday closures such as lunch breaks and closing auctions — not only weekends and holidays.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for session schedules.\\\"};duplicate=1\",\"expected\":\"for session schedules.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastSeenTimestampNs\\\"};duplicate=1\",\"expected\":\"lastSeenTimestampNs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus\\\"};duplicate=1\",\"expected\":\"marketStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"not\\\"};duplicate=1\",\"expected\":\"not\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"observationsTimestamp\\\"};duplicate=1\",\"expected\":\"observationsTimestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"streams with extended and overnight sessions.\\\"};duplicate=1\",\"expected\":\"streams with extended and overnight sessions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to determine whether a market is open. Do\\\"};duplicate=1\",\"expected\":\"to determine whether a market is open. Do\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"use\\\"};duplicate=1\",\"expected\":\"use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=3\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=4\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=5\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=6\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=7\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=1\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v2\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v3\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v3-dex\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v4\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v7\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", or any other timestamp field — timestamps indicate when data was last recorded, not whether the market is currently active.\\\"};duplicate=1\",\"expected\":\", or any other timestamp field — timestamps indicate when data was last recorded, not whether the market is currently active.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Always use\\\"};duplicate=1\",\"expected\":\"Always use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus\\\"};duplicate=1\",\"expected\":\"marketStatus\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"not\\\"};duplicate=1\",\"expected\":\"not\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"observationsTimestamp\\\"};duplicate=1\",\"expected\":\"observationsTimestamp\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to determine whether a market is open. Do\\\"};duplicate=1\",\"expected\":\"to determine whether a market is open. Do\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"use\\\"};duplicate=1\",\"expected\":\"use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=1\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=2\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"code\\\",\\\"reason\\\":\\\"Raw HTML element code is not statically projected\\\"};duplicate=3\",\"component\":\"code\",\"reason\":\"Raw HTML element code is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v8\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=1\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"data-streams/reference/report-schema-v9\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ReportSchemaTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component ReportSchemaTabs\\\"};duplicate=1\",\"component\":\"ReportSchemaTabs\",\"reason\":\"Unsupported MDX component ReportSchemaTabs\"}", + "{\"path\":\"data-streams/rwa-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-streams/rwa-streams/24-5-us-equities-user-guide\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-streams/rwa-streams/24-5-us-equities-user-guide\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"data-streams/rwa-streams/24-5-us-equities-user-guide\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/apac-equities\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\\\"};duplicate=1\",\"expected\":\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\\\"};duplicate=2\",\"expected\":\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\\\"};duplicate=1\",\"expected\":\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\\\"};duplicate=2\",\"expected\":\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Keep markets closed while marketStatus = 1 to prevent users trading at unfair prices.\\\"};duplicate=1\",\"expected\":\"Keep markets closed while marketStatus = 1 to prevent users trading at unfair prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Leverage available should be set in line with the asset average volatility to avoid bad debt if a trader's collateral is insufficient to cover the losses.\\\"};duplicate=1\",\"expected\":\"Leverage available should be set in line with the asset average volatility to avoid bad debt if a trader's collateral is insufficient to cover the losses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Market Hours\\\"};duplicate=1\",\"expected\":\"Market Hours\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monitor spin-off and split announcements while marketStatus = 1.\\\"};duplicate=1\",\"expected\":\"Monitor spin-off and split announcements while marketStatus = 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monitor spin-off and split announcements while marketStatus = 1.\\\"};duplicate=2\",\"expected\":\"Monitor spin-off and split announcements while marketStatus = 1.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Closing timestamp of the last session.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Closing timestamp of the last session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Current timestamp.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Current timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Current timestamp.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Current timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=3\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=4\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=5\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the last mid-price.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Timestamp of the last mid-price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the last mid-price.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Timestamp of the last mid-price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 (Market Closed).\\\"};duplicate=1\",\"expected\":\"marketStatus: 1 (Market Closed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 (Market Closed).\\\"};duplicate=2\",\"expected\":\"marketStatus: 1 (Market Closed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 (Market Closed).\\\"};duplicate=3\",\"expected\":\"marketStatus: 1 (Market Closed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 (Market Closed).\\\"};duplicate=4\",\"expected\":\"marketStatus: 1 (Market Closed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 (Market Closed).\\\"};duplicate=5\",\"expected\":\"marketStatus: 1 (Market Closed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 (Market Closed).\\\"};duplicate=6\",\"expected\":\"marketStatus: 1 (Market Closed).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 1 = Market Closed.\\\"};duplicate=1\",\"expected\":\"marketStatus: 1 = Market Closed.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 2 (Market Open).\\\"};duplicate=1\",\"expected\":\"marketStatus: 2 (Market Open).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 2 (Market Open).\\\"};duplicate=2\",\"expected\":\"marketStatus: 2 (Market Open).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 2 (Market Open).\\\"};duplicate=3\",\"expected\":\"marketStatus: 2 (Market Open).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 2 (Market Open).\\\"};duplicate=4\",\"expected\":\"marketStatus: 2 (Market Open).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: 2 (Market Open).\\\"};duplicate=5\",\"expected\":\"marketStatus: 2 (Market Open).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a bid/ask becomes available or a transaction occurs.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until a bid/ask becomes available or a transaction occurs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a new price is available.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until a new price is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a new price prints.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until a new price prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a new price prints.\\\"};duplicate=2\",\"expected\":\"midPrice: Closing price is repeated until a new price prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until market open.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until market open.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until the ex-date trade prints.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until the ex-date trade prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until the first post-spin trade.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until the first post-spin trade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until the split-adjusted price prints.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until the split-adjusted price prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Current mid price.\\\"};duplicate=1\",\"expected\":\"midPrice: Current mid price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Current mid price.\\\"};duplicate=2\",\"expected\":\"midPrice: Current mid price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Last mid-price is repeated until a new price is available.\\\"};duplicate=1\",\"expected\":\"midPrice: Last mid-price is repeated until a new price is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Last mid-price is repeated until a new price is available.\\\"};duplicate=2\",\"expected\":\"midPrice: Last mid-price is repeated until a new price is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"MarketEventsTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component MarketEventsTabs\\\"};duplicate=1\",\"component\":\"MarketEventsTabs\",\"reason\":\"Unsupported MDX component MarketEventsTabs\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=11\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=12\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=13\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=14\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=15\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=16\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=17\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=18\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=19\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=20\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=21\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=22\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=23\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=24\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=25\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=26\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=27\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=28\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=29\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=30\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=31\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=32\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=33\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=34\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=35\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=36\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=10\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=11\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=12\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=5\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=6\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=7\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=8\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=9\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\\\"};duplicate=1\",\"expected\":\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\\\"};duplicate=2\",\"expected\":\"Auto-pause the market if the first post-event price moves by more than X% from the prior close, update positions, then reopen.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\\\"};duplicate=1\",\"expected\":\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\\\"};duplicate=2\",\"expected\":\"If automatic adjustment isn't possible, disable leverage during the event window to prevent unfair liquidations.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Keep markets closed while marketStatus indicates closed to prevent users trading at unfair prices.\\\"};duplicate=1\",\"expected\":\"Keep markets closed while marketStatus indicates closed to prevent users trading at unfair prices.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Leverage available should be set in line with the asset average volatility to avoid bad debt if a user's collateral is insufficient to cover the losses.\\\"};duplicate=1\",\"expected\":\"Leverage available should be set in line with the asset average volatility to avoid bad debt if a user's collateral is insufficient to cover the losses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Market Hours\\\"};duplicate=1\",\"expected\":\"Market Hours\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monitor spin-off and split announcements during market closed periods.\\\"};duplicate=1\",\"expected\":\"Monitor spin-off and split announcements during market closed periods.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Monitor spin-off and split announcements during market closed periods.\\\"};duplicate=2\",\"expected\":\"Monitor spin-off and split announcements during market closed periods.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Closing timestamp of the last session.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Closing timestamp of the last session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Current timestamp.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Current timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Current timestamp.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Current timestamp.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=3\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=4\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Last close.\\\"};duplicate=5\",\"expected\":\"lastUpdateTimestamp: Last close.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Timestamp of the closing price of the last session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the last mid-price.\\\"};duplicate=1\",\"expected\":\"lastUpdateTimestamp: Timestamp of the last mid-price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"lastUpdateTimestamp: Timestamp of the last mid-price.\\\"};duplicate=2\",\"expected\":\"lastUpdateTimestamp: Timestamp of the last mid-price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=1\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=2\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=3\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=4\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=5\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=6\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Closed status value(s).\\\"};duplicate=7\",\"expected\":\"marketStatus: Market Closed status value(s).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Open status value.\\\"};duplicate=1\",\"expected\":\"marketStatus: Market Open status value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Open status value.\\\"};duplicate=2\",\"expected\":\"marketStatus: Market Open status value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Open status value.\\\"};duplicate=3\",\"expected\":\"marketStatus: Market Open status value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Open status value.\\\"};duplicate=4\",\"expected\":\"marketStatus: Market Open status value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"marketStatus: Market Open status value.\\\"};duplicate=5\",\"expected\":\"marketStatus: Market Open status value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a bid/ask becomes available or a transaction occurs.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until a bid/ask becomes available or a transaction occurs.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a new price is available.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until a new price is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a new price prints.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until a new price prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until a new price prints.\\\"};duplicate=2\",\"expected\":\"midPrice: Closing price is repeated until a new price prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until market open.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until market open.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until the ex-date trade prints.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until the ex-date trade prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until the first post-spin trade.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until the first post-spin trade.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Closing price is repeated until the split-adjusted price prints.\\\"};duplicate=1\",\"expected\":\"midPrice: Closing price is repeated until the split-adjusted price prints.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Current mid price.\\\"};duplicate=1\",\"expected\":\"midPrice: Current mid price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Current mid price.\\\"};duplicate=2\",\"expected\":\"midPrice: Current mid price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Last mid-price is repeated until a new price is available.\\\"};duplicate=1\",\"expected\":\"midPrice: Last mid-price is repeated until a new price is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"midPrice: Last mid-price is repeated until a new price is available.\\\"};duplicate=2\",\"expected\":\"midPrice: Last mid-price is repeated until a new price is available.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"MarketEventsTabs\\\",\\\"reason\\\":\\\"Unsupported MDX component MarketEventsTabs\\\"};duplicate=1\",\"component\":\"MarketEventsTabs\",\"reason\":\"Unsupported MDX component MarketEventsTabs\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=1\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=10\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=11\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=12\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=13\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=14\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=15\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=16\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=17\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=18\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=19\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=2\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=20\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=21\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=22\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=23\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=24\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=25\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=26\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=27\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=28\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=29\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=3\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=30\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=31\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=32\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=33\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=34\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=35\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=36\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=4\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=5\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=6\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=7\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=8\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"li\\\",\\\"reason\\\":\\\"Raw HTML element li is not statically projected\\\"};duplicate=9\",\"component\":\"li\",\"reason\":\"Raw HTML element li is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=1\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=10\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=11\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=12\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=2\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=3\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=4\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=5\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=6\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=7\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=8\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/rwa-streams/handling-market-events-v11\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ul\\\",\\\"reason\\\":\\\"Raw HTML element ul is not statically projected\\\"};duplicate=9\",\"component\":\"ul\",\"reason\":\"Raw HTML element ul is not statically projected\"}", + "{\"path\":\"data-streams/selecting-data-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"MarketPricingRiskTiers\\\",\\\"reason\\\":\\\"Unsupported MDX component MarketPricingRiskTiers\\\"};duplicate=1\",\"component\":\"MarketPricingRiskTiers\",\"reason\":\"Unsupported MDX component MarketPricingRiskTiers\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you lose them, you must rotate your credentials to generate new ones.\\\"};duplicate=1\",\"expected\":\". If you lose them, you must rotate your credentials to generate new ones.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Cancellations are reviewed and confirmed manually. Once confirmed, your subscription will not renew at the end of the current billing period and you will not be charged again. Feed access remains active through the\\\"};duplicate=1\",\"expected\":\"Cancellations are reviewed and confirmed manually. Once confirmed, your subscription will not renew at the end of the current billing period and you will not be charged again. Feed access remains active through the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Dismiss\\\"};duplicate=1\",\"expected\":\"Dismiss\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Period End\\\"};duplicate=1\",\"expected\":\"Period End\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Password and API Key are not stored in the portal. Copy both values and store them securely before clicking\\\"};duplicate=1\",\"expected\":\"The Password and API Key are not stored in the portal. Copy both values and store them securely before clicking\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"app.chain.link\\\"};duplicate=1\",\"expected\":\"app.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"date shown in your subscription.\\\"};duplicate=1\",\"expected\":\"date shown in your subscription.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=1\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"data-streams/sign-up\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=2\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"data-streams/smartdata-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation\\\",\\\"url\\\":\\\"/chainlink-automation\\\"};duplicate=1\",\"expected\":\"Chainlink Automation -> /chainlink-automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"HTTP requests\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-http-client\\\"};duplicate=1\",\"expected\":\"HTTP requests -> /cre/guides/workflow/using-http-client\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Streams Trade Architecture\\\",\\\"url\\\":\\\"/data-streams/architecture#streams-trade-architecture\\\"};duplicate=1\",\"expected\":\"Streams Trade Architecture -> /data-streams/architecture#streams-trade-architecture\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example trading flow\\\",\\\"url\\\":\\\"/data-streams/architecture#example-trading-flow-using-streams-trade\\\"};duplicate=1\",\"expected\":\"example trading flow -> /data-streams/architecture#example-trading-flow-using-streams-trade\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain event triggers\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-triggers/evm-log-trigger\\\"};duplicate=1\",\"expected\":\"onchain event triggers -> /cre/guides/workflow/using-triggers/evm-log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain execution\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-write/overview\\\"};duplicate=1\",\"expected\":\"onchain execution -> /cre/guides/workflow/using-evm-client/onchain-write/overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"workflows\\\",\\\"url\\\":\\\"/cre/key-terms#workflow\\\"};duplicate=1\",\"expected\":\"workflows -> /cre/key-terms#workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams - Streams Trade Architecture)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams - Streams Trade Architecture)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE natively includes\\\"};duplicate=1\",\"expected\":\"CRE natively includes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Read more about the\\\"};duplicate=1\",\"expected\":\"Read more about the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Streams Trade implementation combines Chainlink Data Streams with\\\"};duplicate=1\",\"expected\":\"The Streams Trade implementation combines Chainlink Data Streams with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and an\\\"};duplicate=1\",\"expected\":\"and an\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as first-class capabilities in composable, code-first\\\"};duplicate=1\",\"expected\":\"as first-class capabilities in composable, code-first\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to enable automated trade execution. This implementation allows decentralized applications to automate trade execution, mitigate frontrunning, and limit bias or adverse incentives in executing non-user-triggered orders.\\\"};duplicate=1\",\"expected\":\"to enable automated trade execution. This implementation allows decentralized applications to automate trade execution, mitigate frontrunning, and limit bias or adverse incentives in executing non-user-triggered orders.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"written in Go or TypeScript.\\\"};duplicate=1\",\"expected\":\"written in Go or TypeScript.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/streams-trade/interfaces\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade/interfaces\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE natively includes\\\"};duplicate=1\",\"expected\":\"CRE natively includes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/streams-trade/interfaces\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"SectionWrapper\\\",\\\"reason\\\":\\\"Unsupported MDX component SectionWrapper\\\"};duplicate=1\",\"component\":\"SectionWrapper\",\"reason\":\"Unsupported MDX component SectionWrapper\"}", + "{\"path\":\"data-streams/tokenized-asset-streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedPage\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedPage\\\"};duplicate=1\",\"component\":\"FeedPage\",\"reason\":\"Unsupported MDX component FeedPage\"}", + "{\"path\":\"data-streams/tutorials/evm-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can find addresses for other networks on the\\\"};duplicate=1\",\"expected\":\". You can find addresses for other networks on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/evm-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\\\"};duplicate=1\",\"expected\":\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/evm-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy ClientReportsVerifier to Arbitrum Sepolia, passing the Chainlink-deployed VerifierProxy address as the constructor argument. The VerifierProxy is a Chainlink-deployed contract that routes your verification calls to the correct Verifier contract. You are not deploying the proxy yourself — you only point your contract at it. The VerifierProxy address for Arbitrum Sepolia is\\\"};duplicate=1\",\"expected\":\"Deploy ClientReportsVerifier to Arbitrum Sepolia, passing the Chainlink-deployed VerifierProxy address as the constructor argument. The VerifierProxy is a Chainlink-deployed contract that routes your verification calls to the correct Verifier contract. You are not deploying the proxy yourself — you only point your contract at it. The VerifierProxy address for Arbitrum Sepolia is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about\\\"};duplicate=1\",\"expected\":\"Learn more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about\\\"};duplicate=2\",\"expected\":\"Learn more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for your stream.\\\"};duplicate=1\",\"expected\":\"for your stream.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for your stream.\\\"};duplicate=2\",\"expected\":\"for your stream.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-fetch\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about\\\"};duplicate=1\",\"expected\":\"Learn more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for your stream.\\\"};duplicate=1\",\"expected\":\"for your stream.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/go-sdk-stream\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/rust-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about\\\"};duplicate=1\",\"expected\":\"Learn more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/rust-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for your stream.\\\"};duplicate=1\",\"expected\":\"for your stream.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/rust-sdk-fetch\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/rust-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about\\\"};duplicate=1\",\"expected\":\"Learn more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/rust-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for your stream.\\\"};duplicate=1\",\"expected\":\"for your stream.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/rust-sdk-stream\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// NOTE: Adjust for your desired report use data_streams_report::report::v3::ReportDataV3; use sdk_off_chain::VerificationClient; use solana_client::rpc_client::RpcClient; use solana_sdk::{ commitment_config::CommitmentConfig, pubkey::Pubkey, signature::read_keypair_file, signer::Signer, }; use std::{ path::PathBuf, str::FromStr }; pub fn default_keypair_path() -> String { let mut path = PathBuf::from(std::env::var(\\\\\\\"HOME\\\\\\\").unwrap_or_else(|_| \\\\\\\".\\\\\\\".to_string())); path.push(\\\\\\\".config/solana/id.json\\\\\\\"); path.to_str().unwrap().to_string() } pub fn verify_report( signed_report: &[u8], program_id: &str, access_controller: &str // NOTE: Adjust for your desired report ) -> Result> { // Initialize RPC client with confirmed commitment level let rpc_client = RpcClient::new_with_commitment( \\\\\\\"https://api.devnet.solana.com\\\\\\\", CommitmentConfig::confirmed() ); // Load the keypair that will pay for and sign verification transactions let payer = read_keypair_file(default_keypair_path())?; println!(\\\\\\\"Using keypair: {}\\\\\\\", payer.pubkey()); // Convert to Pubkey let program_pubkey = Pubkey::from_str(program_id)?; let access_controller_pubkey = Pubkey::from_str(access_controller)?; println!(\\\\\\\"Program ID: {}\\\\\\\", program_pubkey); println!(\\\\\\\"Access Controller: {}\\\\\\\", access_controller_pubkey); // Create a verification client instance let client = VerificationClient::new( program_pubkey, access_controller_pubkey, rpc_client, payer ); // Verify the report println!(\\\\\\\"Verifying report of {} bytes...\\\\\\\", signed_report.len()); let result = client.verify(signed_report.to_vec()).map_err(|e| { println!(\\\\\\\"Verification error: {:?}\\\\\\\", e); e })?; // Decode the returned data into a ReportDataV3 struct let return_data = result.return_data.ok_or(\\\\\\\"No return data\\\\\\\")?; // NOTE: Adjust for your desired report let report = ReportDataV3::decode(&return_data)?; Ok(report) }\\\"};duplicate=1\",\"expected\":\"// NOTE: Adjust for your desired report use data_streams_report::report::v3::ReportDataV3; use sdk_off_chain::VerificationClient; use solana_client::rpc_client::RpcClient; use solana_sdk::{ commitment_config::CommitmentConfig, pubkey::Pubkey, signature::read_keypair_file, signer::Signer, }; use std::{ path::PathBuf, str::FromStr }; pub fn default_keypair_path() -> String { let mut path = PathBuf::from(std::env::var(\\\"HOME\\\").unwrap_or_else(|_| \\\".\\\".to_string())); path.push(\\\".config/solana/id.json\\\"); path.to_str().unwrap().to_string() } pub fn verify_report( signed_report: &[u8], program_id: &str, access_controller: &str // NOTE: Adjust for your desired report ) -> Result> { // Initialize RPC client with confirmed commitment level let rpc_client = RpcClient::new_with_commitment( \\\"https://api.devnet.solana.com\\\", CommitmentConfig::confirmed() ); // Load the keypair that will pay for and sign verification transactions let payer = read_keypair_file(default_keypair_path())?; println!(\\\"Using keypair: {}\\\", payer.pubkey()); // Convert to Pubkey let program_pubkey = Pubkey::from_str(program_id)?; let access_controller_pubkey = Pubkey::from_str(access_controller)?; println!(\\\"Program ID: {}\\\", program_pubkey); println!(\\\"Access Controller: {}\\\", access_controller_pubkey); // Create a verification client instance let client = VerificationClient::new( program_pubkey, access_controller_pubkey, rpc_client, payer ); // Verify the report println!(\\\"Verifying report of {} bytes...\\\", signed_report.len()); let result = client.verify(signed_report.to_vec()).map_err(|e| { println!(\\\"Verification error: {:?}\\\", e); e })?; // Decode the returned data into a ReportDataV3 struct let return_data = result.return_data.ok_or(\\\"No return data\\\")?; // NOTE: Adjust for your desired report let report = ReportDataV3::decode(&return_data)?; Ok(report) }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"[package] name = \\\\\\\"example_verify\\\\\\\" version = \\\\\\\"0.1.0\\\\\\\" description = \\\\\\\"Created with Anchor\\\\\\\" edition = \\\\\\\"2021\\\\\\\" [lib] crate-type = [\\\\\\\"cdylib\\\\\\\", \\\\\\\"lib\\\\\\\"] [[bin]] name = \\\\\\\"example_verify\\\\\\\" path = \\\\\\\"src/bin/main.rs\\\\\\\" [features] no-entrypoint = [] no-idl = [] no-log-ix-name = [] cpi = [\\\\\\\"no-entrypoint\\\\\\\"] default = [] [dependencies] data-streams-report = { git = \\\\\\\"https://github.com/smartcontractkit/data-streams-sdk.git\\\\\\\" } sdk-off-chain = { git = \\\\\\\"https://github.com/smartcontractkit/smart-contract-examples.git\\\\\\\", branch = \\\\\\\"data-streams-solana-integration\\\\\\\", package = \\\\\\\"sdk-off-chain\\\\\\\"} solana-program = \\\\\\\"1.18.26\\\\\\\" solana-sdk = \\\\\\\"1.18.26\\\\\\\" solana-client = \\\\\\\"1.18.26\\\\\\\" hex = \\\\\\\"0.4.3\\\\\\\" borsh = \\\\\\\"0.10.3\\\\\\\"\\\"};duplicate=1\",\"expected\":\"[package] name = \\\"example_verify\\\" version = \\\"0.1.0\\\" description = \\\"Created with Anchor\\\" edition = \\\"2021\\\" [lib] crate-type = [\\\"cdylib\\\", \\\"lib\\\"] [[bin]] name = \\\"example_verify\\\" path = \\\"src/bin/main.rs\\\" [features] no-entrypoint = [] no-idl = [] no-log-ix-name = [] cpi = [\\\"no-entrypoint\\\"] default = [] [dependencies] data-streams-report = { git = \\\"https://github.com/smartcontractkit/data-streams-sdk.git\\\" } sdk-off-chain = { git = \\\"https://github.com/smartcontractkit/smart-contract-examples.git\\\", branch = \\\"data-streams-solana-integration\\\", package = \\\"sdk-off-chain\\\"} solana-program = \\\"1.18.26\\\" solana-sdk = \\\"1.18.26\\\" solana-client = \\\"1.18.26\\\" hex = \\\"0.4.3\\\" borsh = \\\"0.10.3\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"anchor init example_verify cd example_verify\\\"};duplicate=1\",\"expected\":\"anchor init example_verify cd example_verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cargo build\\\"};duplicate=1\",\"expected\":\"cargo build\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"mkdir -p programs/example_verify/src/bin touch programs/example_verify/src/bin/main.rs\\\"};duplicate=1\",\"expected\":\"mkdir -p programs/example_verify/src/bin touch programs/example_verify/src/bin/main.rs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"use example_verify::verify_report; use std::env; use std::str::FromStr; use hex; use solana_sdk::pubkey::Pubkey; fn main() { let args: Vec = env::args().collect(); if args.len() != 4 { eprintln!( \\\\\\\"Usage: {} \\\\\\\", args[0] ); std::process::exit(1); } let program_id_str = &args[1]; let access_controller_str = &args[2]; let hex_report = &args[3]; // Validate program_id and access_controller if Pubkey::from_str(program_id_str).is_err() { eprintln!(\\\\\\\"Invalid program ID provided\\\\\\\"); std::process::exit(1); } if Pubkey::from_str(access_controller_str).is_err() { eprintln!(\\\\\\\"Invalid access controller address provided\\\\\\\"); std::process::exit(1); } // Decode the hex string for the signed report let signed_report = match hex::decode(hex_report) { Ok(bytes) => bytes, Err(e) => { eprintln!(\\\\\\\"Failed to decode hex string: {}\\\\\\\", e); std::process::exit(1); } }; // Perform verification off-chain match verify_report(&signed_report, program_id_str, access_controller_str) { Ok(report) => { println!(\\\\\\\"\\\\\\\\nVerified Report Data:\\\\\\\"); println!(\\\\\\\"Feed ID: {}\\\\\\\", report.feed_id); println!(\\\\\\\"Valid from timestamp: {}\\\\\\\", report.valid_from_timestamp); println!(\\\\\\\"Observations timestamp: {}\\\\\\\", report.observations_timestamp); println!(\\\\\\\"Native fee: {}\\\\\\\", report.native_fee); println!(\\\\\\\"Link fee: {}\\\\\\\", report.link_fee); println!(\\\\\\\"Expires at: {}\\\\\\\", report.expires_at); println!(\\\\\\\"Benchmark price: {}\\\\\\\", report.benchmark_price); println!(\\\\\\\"Bid: {}\\\\\\\", report.bid); println!(\\\\\\\"Ask: {}\\\\\\\", report.ask); } Err(e) => { eprintln!(\\\\\\\"Verification failed: {}\\\\\\\", e); std::process::exit(1); } } }\\\"};duplicate=1\",\"expected\":\"use example_verify::verify_report; use std::env; use std::str::FromStr; use hex; use solana_sdk::pubkey::Pubkey; fn main() { let args: Vec = env::args().collect(); if args.len() != 4 { eprintln!( \\\"Usage: {} \\\", args[0] ); std::process::exit(1); } let program_id_str = &args[1]; let access_controller_str = &args[2]; let hex_report = &args[3]; // Validate program_id and access_controller if Pubkey::from_str(program_id_str).is_err() { eprintln!(\\\"Invalid program ID provided\\\"); std::process::exit(1); } if Pubkey::from_str(access_controller_str).is_err() { eprintln!(\\\"Invalid access controller address provided\\\"); std::process::exit(1); } // Decode the hex string for the signed report let signed_report = match hex::decode(hex_report) { Ok(bytes) => bytes, Err(e) => { eprintln!(\\\"Failed to decode hex string: {}\\\", e); std::process::exit(1); } }; // Perform verification off-chain match verify_report(&signed_report, program_id_str, access_controller_str) { Ok(report) => { println!(\\\"\\\\nVerified Report Data:\\\"); println!(\\\"Feed ID: {}\\\", report.feed_id); println!(\\\"Valid from timestamp: {}\\\", report.valid_from_timestamp); println!(\\\"Observations timestamp: {}\\\", report.observations_timestamp); println!(\\\"Native fee: {}\\\", report.native_fee); println!(\\\"Link fee: {}\\\", report.link_fee); println!(\\\"Expires at: {}\\\", report.expires_at); println!(\\\"Benchmark price: {}\\\", report.benchmark_price); println!(\\\"Bid: {}\\\", report.bid); println!(\\\"Ask: {}\\\", report.ask); } Err(e) => { eprintln!(\\\"Verification failed: {}\\\", e); std::process::exit(1); } } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Create a new Anchor project\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"1. Create a new Anchor project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Configure your project's dependencies\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"2. Configure your project's dependencies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Implement the verification library\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"3. Implement the verification library\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Create the command-line interface\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"4. Create the command-line interface\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Build and run the verifier\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"5. Build and run the verifier\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Implementation tutorial\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Implementation tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RWA streams\\\",\\\"url\\\":\\\"/data-streams/rwa-streams\\\"};duplicate=1\",\"expected\":\"RWA streams -> /data-streams/rwa-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"V3 schema\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v3\\\"};duplicate=1\",\"expected\":\"V3 schema -> /data-streams/reference/report-schema-v3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"V8 schema\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v8\\\"};duplicate=1\",\"expected\":\"V8 schema -> /data-streams/reference/report-schema-v8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"crypto streams\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"crypto streams -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"report crate\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/data-streams-sdk/tree/main/rust/crates/report\\\"};duplicate=1\",\"expected\":\"report crate -> https://github.com/smartcontractkit/data-streams-sdk/tree/main/rust/crates/report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", import and use the\\\"};duplicate=1\",\"expected\":\", import and use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Run\\\"};duplicate=1\",\"expected\":\". Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Run\\\"};duplicate=2\",\"expected\":\". Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Run\\\"};duplicate=3\",\"expected\":\". Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Allowlisted Account: Your account must be allowlisted in the Data Streams Access Controller.\\\"};duplicate=1\",\"expected\":\"Allowlisted Account: Your account must be allowlisted in the Data Streams Access Controller.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Build the project:\\\"};duplicate=1\",\"expected\":\"Build the project:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a binary target for the verification tool:\\\"};duplicate=1\",\"expected\":\"Create a binary target for the verification tool:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create a new Anchor project:\\\"};duplicate=1\",\"expected\":\"Create a new Anchor project:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create programs/example_verify/src/bin/main.rs:\\\"};duplicate=1\",\"expected\":\"Create programs/example_verify/src/bin/main.rs:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create programs/example_verify/src/lib.rs with the verification function:\\\"};duplicate=1\",\"expected\":\"Create programs/example_verify/src/lib.rs with the verification function:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Make sure you are connected to Devnet with\\\"};duplicate=1\",\"expected\":\"Make sure you are connected to Devnet with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: While this tutorial uses the Anchor framework for project structure, you can integrate the verification using any Rust-based Solana project setup. The verifier SDK and client libraries are written in Rust, but you can integrate them into your preferred Rust project structure.\\\"};duplicate=1\",\"expected\":\"Note: While this tutorial uses the Anchor framework for project structure, you can integrate the verification using any Rust-based Solana project setup. The verifier SDK and client libraries are written in Rust, but you can integrate them into your preferred Rust project structure.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example uses the\\\"};duplicate=1\",\"expected\":\"This example uses the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Update your program's manifest file (programs/example_verify/Cargo.toml):\\\"};duplicate=1\",\"expected\":\"Update your program's manifest file (programs/example_verify/Cargo.toml):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"anchor --version\\\"};duplicate=1\",\"expected\":\"anchor --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for\\\"};duplicate=1\",\"expected\":\"for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from the\\\"};duplicate=1\",\"expected\":\"from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"instead.\\\"};duplicate=1\",\"expected\":\"instead.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rustc --version\\\"};duplicate=1\",\"expected\":\"rustc --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"solana --version\\\"};duplicate=1\",\"expected\":\"solana --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"solana balance\\\"};duplicate=1\",\"expected\":\"solana balance\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"solana config set --url https://api.devnet.solana.com\\\"};duplicate=1\",\"expected\":\"solana config set --url https://api.devnet.solana.com\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to decode the report. If you verify reports for\\\"};duplicate=1\",\"expected\":\"to decode the report. If you verify reports for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to get devnet SOL. Check your balance with\\\"};duplicate=1\",\"expected\":\"to get devnet SOL. Check your balance with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation.\\\"};duplicate=1\",\"expected\":\"to verify your installation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation.\\\"};duplicate=2\",\"expected\":\"to verify your installation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-offchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation.\\\"};duplicate=3\",\"expected\":\"to verify your installation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// Import required dependencies for Anchor, Solana, and Data Streams use anchor_lang::prelude::*; use anchor_lang::solana_program::{ program::{get_return_data, invoke}, pubkey::Pubkey, instruction::Instruction, }; // NOTE: Adjust for your report version use chainlink_data_streams_report::report::v3::ReportDataV3; use chainlink_solana_data_streams::VerifierInstructions; declare_id!(\\\\\\\"\\\\\\\"); #[program] pub mod example_verify { use super::*; /// Verifies a Data Streams report using Cross-Program Invocation to the Verifier program /// Returns the decoded report data if verification succeeds pub fn verify(ctx: Context, signed_report: Vec) -> Result<()> { let program_id = ctx.accounts.verifier_program_id.key(); let verifier_account = ctx.accounts.verifier_account.key(); let access_controller = ctx.accounts.access_controller.key(); let user = ctx.accounts.user.key(); let config_account = ctx.accounts.config_account.key(); // Create verification instruction let chainlink_ix: Instruction = VerifierInstructions::verify( &program_id, &verifier_account, &access_controller, &user, &config_account, signed_report, ); // Invoke the Verifier program invoke( &chainlink_ix, &[ ctx.accounts.verifier_account.to_account_info(), ctx.accounts.access_controller.to_account_info(), ctx.accounts.user.to_account_info(), ctx.accounts.config_account.to_account_info(), ], )?; // Decode and log the verified report data if let Some((_program_id, return_data)) = get_return_data() { msg!(\\\\\\\"Report data found\\\\\\\"); // NOTE: Adjust for your report version (V3, V4, V8, etc.) let report = ReportDataV3::decode(&return_data) .map_err(|_| error!(CustomError::InvalidReportData))?; // Log report fields // NOTE: Adjust for your report and desired output msg!(\\\\\\\"FeedId: {}\\\\\\\", report.feed_id); msg!(\\\\\\\"Valid from timestamp: {}\\\\\\\", report.valid_from_timestamp); msg!(\\\\\\\"Observations Timestamp: {}\\\\\\\", report.observations_timestamp); msg!(\\\\\\\"Native Fee: {}\\\\\\\", report.native_fee); msg!(\\\\\\\"Link Fee: {}\\\\\\\", report.link_fee); msg!(\\\\\\\"Expires At: {}\\\\\\\", report.expires_at); msg!(\\\\\\\"Benchmark Price: {}\\\\\\\", report.benchmark_price); msg!(\\\\\\\"Bid: {}\\\\\\\", report.bid); msg!(\\\\\\\"Ask: {}\\\\\\\", report.ask); } else { msg!(\\\\\\\"No report data found\\\\\\\"); return Err(error!(CustomError::NoReportData)); } Ok(()) } } #[error_code] pub enum CustomError { #[msg(\\\\\\\"No valid report data found\\\\\\\")] NoReportData, #[msg(\\\\\\\"Invalid report data format\\\\\\\")] InvalidReportData, } #[derive(Accounts)] pub struct ExampleProgramContext<'info> { /// The Verifier Account stores the DON's public keys and other verification parameters. /// This account must match the PDA derived from the verifier program. /// CHECK: The account is validated by the verifier program. pub verifier_account: AccountInfo<'info>, /// The Access Controller Account /// CHECK: The account structure is validated by the verifier program. pub access_controller: AccountInfo<'info>, /// The account that signs the transaction. pub user: Signer<'info>, /// The Config Account is a PDA derived from a signed report /// CHECK: The account is validated by the verifier program. pub config_account: UncheckedAccount<'info>, /// The Verifier Program ID specifies the target Chainlink Data Streams Verifier Program. /// CHECK: The program ID is validated by the verifier program. pub verifier_program_id: AccountInfo<'info>, }\\\"};duplicate=1\",\"expected\":\"// Import required dependencies for Anchor, Solana, and Data Streams use anchor_lang::prelude::*; use anchor_lang::solana_program::{ program::{get_return_data, invoke}, pubkey::Pubkey, instruction::Instruction, }; // NOTE: Adjust for your report version use chainlink_data_streams_report::report::v3::ReportDataV3; use chainlink_solana_data_streams::VerifierInstructions; declare_id!(\\\"\\\"); #[program] pub mod example_verify { use super::*; /// Verifies a Data Streams report using Cross-Program Invocation to the Verifier program /// Returns the decoded report data if verification succeeds pub fn verify(ctx: Context, signed_report: Vec) -> Result<()> { let program_id = ctx.accounts.verifier_program_id.key(); let verifier_account = ctx.accounts.verifier_account.key(); let access_controller = ctx.accounts.access_controller.key(); let user = ctx.accounts.user.key(); let config_account = ctx.accounts.config_account.key(); // Create verification instruction let chainlink_ix: Instruction = VerifierInstructions::verify( &program_id, &verifier_account, &access_controller, &user, &config_account, signed_report, ); // Invoke the Verifier program invoke( &chainlink_ix, &[ ctx.accounts.verifier_account.to_account_info(), ctx.accounts.access_controller.to_account_info(), ctx.accounts.user.to_account_info(), ctx.accounts.config_account.to_account_info(), ], )?; // Decode and log the verified report data if let Some((_program_id, return_data)) = get_return_data() { msg!(\\\"Report data found\\\"); // NOTE: Adjust for your report version (V3, V4, V8, etc.) let report = ReportDataV3::decode(&return_data) .map_err(|_| error!(CustomError::InvalidReportData))?; // Log report fields // NOTE: Adjust for your report and desired output msg!(\\\"FeedId: {}\\\", report.feed_id); msg!(\\\"Valid from timestamp: {}\\\", report.valid_from_timestamp); msg!(\\\"Observations Timestamp: {}\\\", report.observations_timestamp); msg!(\\\"Native Fee: {}\\\", report.native_fee); msg!(\\\"Link Fee: {}\\\", report.link_fee); msg!(\\\"Expires At: {}\\\", report.expires_at); msg!(\\\"Benchmark Price: {}\\\", report.benchmark_price); msg!(\\\"Bid: {}\\\", report.bid); msg!(\\\"Ask: {}\\\", report.ask); } else { msg!(\\\"No report data found\\\"); return Err(error!(CustomError::NoReportData)); } Ok(()) } } #[error_code] pub enum CustomError { #[msg(\\\"No valid report data found\\\")] NoReportData, #[msg(\\\"Invalid report data format\\\")] InvalidReportData, } #[derive(Accounts)] pub struct ExampleProgramContext<'info> { /// The Verifier Account stores the DON's public keys and other verification parameters. /// This account must match the PDA derived from the verifier program. /// CHECK: The account is validated by the verifier program. pub verifier_account: AccountInfo<'info>, /// The Access Controller Account /// CHECK: The account structure is validated by the verifier program. pub access_controller: AccountInfo<'info>, /// The account that signs the transaction. pub user: Signer<'info>, /// The Config Account is a PDA derived from a signed report /// CHECK: The account is validated by the verifier program. pub config_account: UncheckedAccount<'info>, /// The Verifier Program ID specifies the target Chainlink Data Streams Verifier Program. /// CHECK: The program ID is validated by the verifier program. pub verifier_program_id: AccountInfo<'info>, }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"ANCHOR_PROVIDER_URL=\\\\\\\"https://api.devnet.solana.com\\\\\\\" ANCHOR_WALLET=\\\\\\\"~/.config/solana/id.json\\\\\\\" ts-node tests/verify_test.ts\\\"};duplicate=1\",\"expected\":\"ANCHOR_PROVIDER_URL=\\\"https://api.devnet.solana.com\\\" ANCHOR_WALLET=\\\"~/.config/solana/id.json\\\" ts-node tests/verify_test.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Deploying cluster: https://api.devnet.solana.com Upgrade authority: ~/.config/solana/id.json Deploying program \\\\\\\"example_verify\\\\\\\"... Program path: ~/example_verify/target/deploy/example_verify.so... Program Id: 8XcUbDgY2UaUYNHkirKsWqXJtzPXezBSyj5Yh87dXums Signature: 3ky6VkpebDGq7x1n8JB32daybmjvbRBsD4yR2uCCussSWhokaEESTXuSa5s8NMvKTz2NZjoq9aoQ9pvuw9bYoibt Deploy success\\\"};duplicate=1\",\"expected\":\"Deploying cluster: https://api.devnet.solana.com Upgrade authority: ~/.config/solana/id.json Deploying program \\\"example_verify\\\"... Program path: ~/example_verify/target/deploy/example_verify.so... Program Id: 8XcUbDgY2UaUYNHkirKsWqXJtzPXezBSyj5Yh87dXums Signature: 3ky6VkpebDGq7x1n8JB32daybmjvbRBsD4yR2uCCussSWhokaEESTXuSa5s8NMvKTz2NZjoq9aoQ9pvuw9bYoibt Deploy success\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"[dependencies] anchor-lang = \\\\\\\"0.31.0\\\\\\\" chainlink_solana_data_streams = { git = \\\\\\\"https://github.com/smartcontractkit/chainlink-data-streams-solana\\\\\\\" } chainlink-data-streams-report = \\\\\\\"1.0.3\\\\\\\"\\\"};duplicate=1\",\"expected\":\"[dependencies] anchor-lang = \\\"0.31.0\\\" chainlink_solana_data_streams = { git = \\\"https://github.com/smartcontractkit/chainlink-data-streams-solana\\\" } chainlink-data-streams-report = \\\"1.0.3\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"[features] seeds = false skip-lint = false [programs.devnet] # Replace with your program ID example_verify = \\\\\\\"\\\\\\\" [registry] url = \\\\\\\"https://api.apr.dev\\\\\\\" [provider] cluster = \\\\\\\"devnet\\\\\\\" wallet = \\\\\\\"~/.config/solana/id.json\\\\\\\" [scripts] test = \\\\\\\"yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts\\\\\\\"\\\"};duplicate=1\",\"expected\":\"[features] seeds = false skip-lint = false [programs.devnet] # Replace with your program ID example_verify = \\\"\\\" [registry] url = \\\"https://api.apr.dev\\\" [provider] cluster = \\\"devnet\\\" wallet = \\\"~/.config/solana/id.json\\\" [scripts] test = \\\"yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts\\\"\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"anchor build\\\"};duplicate=1\",\"expected\":\"anchor build\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"anchor deploy\\\"};duplicate=1\",\"expected\":\"anchor deploy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"anchor init example_verify\\\"};duplicate=1\",\"expected\":\"anchor init example_verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cd example_verify\\\"};duplicate=1\",\"expected\":\"cd example_verify\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"import * as anchor from \\\\\\\"@coral-xyz/anchor\\\\\\\" import { Program } from \\\\\\\"@coral-xyz/anchor\\\\\\\" import { PublicKey } from \\\\\\\"@solana/web3.js\\\\\\\" import { ExampleVerify } from \\\\\\\"../target/types/example_verify\\\\\\\" import * as snappy from \\\\\\\"snappy\\\\\\\" // Data Streams Verifier Program ID on Devnet const VERIFIER_PROGRAM_ID = new PublicKey(\\\\\\\"Gt9S41PtjR58CbG9JhJ3J6vxesqrNAswbWYbLNTMZA3c\\\\\\\") async function main() { // Setup connection and provider const provider = anchor.AnchorProvider.env() anchor.setProvider(provider) // Initialize your program using the IDL and your program ID const program = new Program(require(\\\\\\\"../target/idl/example_verify.json\\\\\\\"), provider) // Convert the hex string to a Uint8Array // This is an example report payload for a crypto stream const hexString = \\\\\\\"0x00064f2cd1be62b7496ad4897b984db99243e0921906f66ded15149d993ef42c000000000000000000000000000000000000000000000000000000000103c90c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001200003684ea93c43ed7bd00ab3bb189bb62f880436589f1ca58b599cd97d6007fb0000000000000000000000000000000000000000000000000000000067570fa40000000000000000000000000000000000000000000000000000000067570fa400000000000000000000000000000000000000000000000000004c6ac85bf854000000000000000000000000000000000000000000000000002e1bf13b772a9c0000000000000000000000000000000000000000000000000000000067586124000000000000000000000000000000000000000000000000002bb4cf7662949c000000000000000000000000000000000000000000000000002bae04e2661000000000000000000000000000000000000000000000000000002bb6a26c3fbeb80000000000000000000000000000000000000000000000000000000000000002af5e1b45dd8c84b12b4b58651ff4173ad7ca3f5d7f5374f077f71cce020fca787124749ce727634833d6ca67724fd912535c5da0f42fa525f46942492458f2c2000000000000000000000000000000000000000000000000000000000000000204e0bfa6e82373ae7dff01a305b72f1debe0b1f942a3af01bad18e0dc78a599f10bc40c2474b4059d43a591b75bdfdd80aafeffddfd66d0395cca2fdeba1673d\\\\\\\" // Remove the '0x' prefix if present const cleanHexString = hexString.startsWith(\\\\\\\"0x\\\\\\\") ? hexString.slice(2) : hexString // Validate hex string format if (!/^[0-9a-fA-F]+$/.test(cleanHexString)) { throw new Error(\\\\\\\"Invalid hex string format\\\\\\\") } // Convert hex to Uint8Array const signedReport = new Uint8Array(cleanHexString.match(/.{1,2}/g).map((byte) => parseInt(byte, 16))) // Compress the report using Snappy const compressedReport = await snappy.compress(Buffer.from(signedReport)) // Derive necessary PDAs using the SDK's helper functions const verifierAccount = await PublicKey.findProgramAddressSync([Buffer.from(\\\\\\\"verifier\\\\\\\")], VERIFIER_PROGRAM_ID) const configAccount = await PublicKey.findProgramAddressSync([signedReport.slice(0, 32)], VERIFIER_PROGRAM_ID) // The Data Streams access controller on devnet const accessController = new PublicKey(\\\\\\\"2k3DsgwBoqrnvXKVvd7jX7aptNxdcRBdcd5HkYsGgbrb\\\\\\\") try { console.log(\\\\\\\"\\\\\\\\n📝 Transaction Details\\\\\\\") console.log(\\\\\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\\\\") console.log(\\\\\\\"🔑 Signer:\\\\\\\", provider.wallet.publicKey.toString()) const tx = await program.methods .verify(compressedReport) .accounts({ verifierAccount: verifierAccount[0], accessController: accessController, user: provider.wallet.publicKey, configAccount: configAccount[0], verifierProgramId: VERIFIER_PROGRAM_ID, }) .rpc({ commitment: \\\\\\\"confirmed\\\\\\\" }) console.log(\\\\\\\"✅ Transaction successful!\\\\\\\") console.log(\\\\\\\"🔗 Signature:\\\\\\\", tx) // Fetch and display logs const txDetails = await provider.connection.getTransaction(tx, { commitment: \\\\\\\"confirmed\\\\\\\", maxSupportedTransactionVersion: 0, }) console.log(\\\\\\\"\\\\\\\\n📋 Program Logs\\\\\\\") console.log(\\\\\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\\\\") let indentLevel = 0 let currentProgramId = \\\\\\\"\\\\\\\" txDetails.meta.logMessages.forEach((log) => { // Handle indentation for inner program calls if (log.includes(\\\\\\\"Program invoke\\\\\\\")) { const programIdMatch = log.match(/Program (.*?) invoke/) if (programIdMatch) { currentProgramId = programIdMatch[1] // Remove \\\\\\\"Unknown Program\\\\\\\" prefix if present currentProgramId = currentProgramId.replace(\\\\\\\"Unknown Program \\\\\\\", \\\\\\\"\\\\\\\") // Remove parentheses if present currentProgramId = currentProgramId.replace(/[()]/g, \\\\\\\"\\\\\\\") } console.log(\\\\\\\" \\\\\\\".repeat(indentLevel) + \\\\\\\"🔄\\\\\\\", log.trim()) indentLevel++ return } if (log.includes(\\\\\\\"Program return\\\\\\\") || log.includes(\\\\\\\"Program consumed\\\\\\\")) { indentLevel = Math.max(0, indentLevel - 1) } // Add indentation to all logs const indent = \\\\\\\" \\\\\\\".repeat(indentLevel) if (log.includes(\\\\\\\"Program log:\\\\\\\")) { const logMessage = log.replace(\\\\\\\"Program log:\\\\\\\", \\\\\\\"\\\\\\\").trim() if (log.includes(\\\\\\\"Program log:\\\\\\\")) { console.log(indent + \\\\\\\"📍\\\\\\\", logMessage) } else if (log.includes(\\\\\\\"Program data:\\\\\\\")) { console.log(indent + \\\\\\\"📊\\\\\\\", log.replace(\\\\\\\"Program data:\\\\\\\", \\\\\\\"\\\\\\\").trim()) } } }) console.log(\\\\\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\\\\\n\\\\\\\") } catch (error) { console.log(\\\\\\\"\\\\\\\\n❌ Transaction Failed\\\\\\\") console.log(\\\\\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\\\\") console.error(\\\\\\\"Error:\\\\\\\", error) console.log(\\\\\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\\\\\n\\\\\\\") } } main()\\\"};duplicate=1\",\"expected\":\"import * as anchor from \\\"@coral-xyz/anchor\\\" import { Program } from \\\"@coral-xyz/anchor\\\" import { PublicKey } from \\\"@solana/web3.js\\\" import { ExampleVerify } from \\\"../target/types/example_verify\\\" import * as snappy from \\\"snappy\\\" // Data Streams Verifier Program ID on Devnet const VERIFIER_PROGRAM_ID = new PublicKey(\\\"Gt9S41PtjR58CbG9JhJ3J6vxesqrNAswbWYbLNTMZA3c\\\") async function main() { // Setup connection and provider const provider = anchor.AnchorProvider.env() anchor.setProvider(provider) // Initialize your program using the IDL and your program ID const program = new Program(require(\\\"../target/idl/example_verify.json\\\"), provider) // Convert the hex string to a Uint8Array // This is an example report payload for a crypto stream const hexString = \\\"0x00064f2cd1be62b7496ad4897b984db99243e0921906f66ded15149d993ef42c000000000000000000000000000000000000000000000000000000000103c90c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001200003684ea93c43ed7bd00ab3bb189bb62f880436589f1ca58b599cd97d6007fb0000000000000000000000000000000000000000000000000000000067570fa40000000000000000000000000000000000000000000000000000000067570fa400000000000000000000000000000000000000000000000000004c6ac85bf854000000000000000000000000000000000000000000000000002e1bf13b772a9c0000000000000000000000000000000000000000000000000000000067586124000000000000000000000000000000000000000000000000002bb4cf7662949c000000000000000000000000000000000000000000000000002bae04e2661000000000000000000000000000000000000000000000000000002bb6a26c3fbeb80000000000000000000000000000000000000000000000000000000000000002af5e1b45dd8c84b12b4b58651ff4173ad7ca3f5d7f5374f077f71cce020fca787124749ce727634833d6ca67724fd912535c5da0f42fa525f46942492458f2c2000000000000000000000000000000000000000000000000000000000000000204e0bfa6e82373ae7dff01a305b72f1debe0b1f942a3af01bad18e0dc78a599f10bc40c2474b4059d43a591b75bdfdd80aafeffddfd66d0395cca2fdeba1673d\\\" // Remove the '0x' prefix if present const cleanHexString = hexString.startsWith(\\\"0x\\\") ? hexString.slice(2) : hexString // Validate hex string format if (!/^[0-9a-fA-F]+$/.test(cleanHexString)) { throw new Error(\\\"Invalid hex string format\\\") } // Convert hex to Uint8Array const signedReport = new Uint8Array(cleanHexString.match(/.{1,2}/g).map((byte) => parseInt(byte, 16))) // Compress the report using Snappy const compressedReport = await snappy.compress(Buffer.from(signedReport)) // Derive necessary PDAs using the SDK's helper functions const verifierAccount = await PublicKey.findProgramAddressSync([Buffer.from(\\\"verifier\\\")], VERIFIER_PROGRAM_ID) const configAccount = await PublicKey.findProgramAddressSync([signedReport.slice(0, 32)], VERIFIER_PROGRAM_ID) // The Data Streams access controller on devnet const accessController = new PublicKey(\\\"2k3DsgwBoqrnvXKVvd7jX7aptNxdcRBdcd5HkYsGgbrb\\\") try { console.log(\\\"\\\\n📝 Transaction Details\\\") console.log(\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\") console.log(\\\"🔑 Signer:\\\", provider.wallet.publicKey.toString()) const tx = await program.methods .verify(compressedReport) .accounts({ verifierAccount: verifierAccount[0], accessController: accessController, user: provider.wallet.publicKey, configAccount: configAccount[0], verifierProgramId: VERIFIER_PROGRAM_ID, }) .rpc({ commitment: \\\"confirmed\\\" }) console.log(\\\"✅ Transaction successful!\\\") console.log(\\\"🔗 Signature:\\\", tx) // Fetch and display logs const txDetails = await provider.connection.getTransaction(tx, { commitment: \\\"confirmed\\\", maxSupportedTransactionVersion: 0, }) console.log(\\\"\\\\n📋 Program Logs\\\") console.log(\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\") let indentLevel = 0 let currentProgramId = \\\"\\\" txDetails.meta.logMessages.forEach((log) => { // Handle indentation for inner program calls if (log.includes(\\\"Program invoke\\\")) { const programIdMatch = log.match(/Program (.*?) invoke/) if (programIdMatch) { currentProgramId = programIdMatch[1] // Remove \\\"Unknown Program\\\" prefix if present currentProgramId = currentProgramId.replace(\\\"Unknown Program \\\", \\\"\\\") // Remove parentheses if present currentProgramId = currentProgramId.replace(/[()]/g, \\\"\\\") } console.log(\\\" \\\".repeat(indentLevel) + \\\"🔄\\\", log.trim()) indentLevel++ return } if (log.includes(\\\"Program return\\\") || log.includes(\\\"Program consumed\\\")) { indentLevel = Math.max(0, indentLevel - 1) } // Add indentation to all logs const indent = \\\" \\\".repeat(indentLevel) if (log.includes(\\\"Program log:\\\")) { const logMessage = log.replace(\\\"Program log:\\\", \\\"\\\").trim() if (log.includes(\\\"Program log:\\\")) { console.log(indent + \\\"📍\\\", logMessage) } else if (log.includes(\\\"Program data:\\\")) { console.log(indent + \\\"📊\\\", log.replace(\\\"Program data:\\\", \\\"\\\").trim()) } } }) console.log(\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\n\\\") } catch (error) { console.log(\\\"\\\\n❌ Transaction Failed\\\") console.log(\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\") console.error(\\\"Error:\\\", error) console.log(\\\"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\\n\\\") } } main()\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"let report = ReportDataV3::decode(&return_data)?;\\\"};duplicate=1\",\"expected\":\"let report = ReportDataV3::decode(&return_data)?;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"let report = ReportDataV8::decode(&return_data)?;\\\"};duplicate=1\",\"expected\":\"let report = ReportDataV8::decode(&return_data)?;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"use chainlink_data_streams_report::report::v3::ReportDataV3;\\\"};duplicate=1\",\"expected\":\"use chainlink_data_streams_report::report::v3::ReportDataV3;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"use chainlink_data_streams_report::report::v8::ReportDataV8;\\\"};duplicate=1\",\"expected\":\"use chainlink_data_streams_report::report::v8::ReportDataV8;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"yarn add @solana/web3.js yarn add -D ts-node typescript @types/node\\\"};duplicate=1\",\"expected\":\"yarn add @solana/web3.js yarn add -D ts-node typescript @types/node\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"yarn add snappy\\\"};duplicate=1\",\"expected\":\"yarn add snappy\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"📝 Transaction Details ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🔑 Signer: 1BZZU8cJsrMSBaQQGUxTE4LQYX2SU2jjs97pkrz7rHD ✅ Transaction successful! 🔗 Signature: 2CTZ7kgAxTogvMgb7QFDJUAq9xFBUVTEvyjf7UuhoVrHDhYKtHpQmd8hEy9XvLhfgWMdVTpCRvdf18r1ixgtncUc 📋 Program Logs ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 📍 Instruction: Verify 📍 Instruction: Verify 📍 Report data found 📍 FeedId: 0x0003684ea93c43ed7bd00ab3bb189bb62f880436589f1ca58b599cd97d6007fb 📍 valid from timestamp: 1733758884 📍 Observations Timestamp: 1733758884 📍 Native Fee: 84021511714900 📍 Link Fee: 12978571827423900 📍 Expires At: 1733845284 📍 Benchmark Price: 12302227135960220 📍 Bid: 12294760000000000 📍 Ask: 12304232715632312 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\\\"};duplicate=1\",\"expected\":\"📝 Transaction Details ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🔑 Signer: 1BZZU8cJsrMSBaQQGUxTE4LQYX2SU2jjs97pkrz7rHD ✅ Transaction successful! 🔗 Signature: 2CTZ7kgAxTogvMgb7QFDJUAq9xFBUVTEvyjf7UuhoVrHDhYKtHpQmd8hEy9XvLhfgWMdVTpCRvdf18r1ixgtncUc 📋 Program Logs ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 📍 Instruction: Verify 📍 Instruction: Verify 📍 Report data found 📍 FeedId: 0x0003684ea93c43ed7bd00ab3bb189bb62f880436589f1ca58b599cd97d6007fb 📍 valid from timestamp: 1733758884 📍 Observations Timestamp: 1733758884 📍 Native Fee: 84021511714900 📍 Link Fee: 12978571827423900 📍 Expires At: 1733845284 📍 Benchmark Price: 12302227135960220 📍 Bid: 12294760000000000 📍 Ask: 12304232715632312 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Create a new Anchor project\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"1. Create a new Anchor project\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Configure your project for devnet\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"2. Configure your project for devnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Set up your program's dependencies\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"3. Set up your program's dependencies\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Write the program\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"4. Write the program\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Deploy your program\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"5. Deploy your program\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"6. Interact with the Verifier Program\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"6. Interact with the Verifier Program\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Adapting code for different report schema versions\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Adapting code for different report schema versions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Best practices\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Best practices\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Implementation tutorial\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Implementation tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Learn more\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Learn more\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Program Derived Addresses (PDAs)\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Program Derived Addresses (PDAs)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Data Streams Solana SDK\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink-data-streams-solana\\\"};duplicate=1\",\"expected\":\"Chainlink Data Streams Solana SDK -> https://github.com/smartcontractkit/chainlink-data-streams-solana\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Cross-Program Invocation (CPI)\\\",\\\"url\\\":\\\"https://solana.com/docs/core/cpi\\\"};duplicate=1\",\"expected\":\"Cross-Program Invocation (CPI) -> https://solana.com/docs/core/cpi\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Cryptocurrency v3 schema\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v3\\\"};duplicate=1\",\"expected\":\"Cryptocurrency v3 schema -> /data-streams/reference/report-schema-v3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Stream reports\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-overview\\\"};duplicate=1\",\"expected\":\"Data Stream reports -> /data-streams/reference/report-schema-overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Program Derived Addresses (PDAs)\\\",\\\"url\\\":\\\"#program-derived-addresses-pdas\\\"};duplicate=1\",\"expected\":\"Program Derived Addresses (PDAs) -> #program-derived-addresses-pdas\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"RWA streams\\\",\\\"url\\\":\\\"/data-streams/rwa-streams\\\"};duplicate=1\",\"expected\":\"RWA streams -> /data-streams/rwa-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Report Schemas\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-overview\\\"};duplicate=1\",\"expected\":\"Report Schemas -> /data-streams/reference/report-schema-overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Solana CLI\\\",\\\"url\\\":\\\"https://docs.solana.com/cli/transfer-tokens#airdrop-some-tokens-to-get-started\\\"};duplicate=1\",\"expected\":\"Solana CLI -> https://docs.solana.com/cli/transfer-tokens#airdrop-some-tokens-to-get-started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Solana Faucet\\\",\\\"url\\\":\\\"https://faucet.solana.com/\\\"};duplicate=1\",\"expected\":\"Solana Faucet -> https://faucet.solana.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Stream Addresses\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"Stream Addresses -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"V3 schema\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v3\\\"};duplicate=1\",\"expected\":\"V3 schema -> /data-streams/reference/report-schema-v3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"V8 schema\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v8\\\"};duplicate=1\",\"expected\":\"V8 schema -> /data-streams/reference/report-schema-v8\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"adapting code for different report schema versions\\\",\\\"url\\\":\\\"#adapting-code-for-different-report-schema-versions\\\"};duplicate=1\",\"expected\":\"adapting code for different report schema versions -> #adapting-code-for-different-report-schema-versions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"crypto streams\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"crypto streams -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"report crate\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/data-streams-sdk/tree/main/rust/crates/report\\\"};duplicate=1\",\"expected\":\"report crate -> https://github.com/smartcontractkit/data-streams-sdk/tree/main/rust/crates/report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", import and use the\\\"};duplicate=1\",\"expected\":\", import and use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", you'll need to adapt your code to handle the specific report schema version they use:\\\"};duplicate=1\",\"expected\":\", you'll need to adapt your code to handle the specific report schema version they use:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". If you're working with a different type of stream (e.g., RWA, NAV), make sure to adjust the report fields to match the appropriate schema (e.g., v8, v9). Refer to the\\\"};duplicate=1\",\"expected\":\". If you're working with a different type of stream (e.g., RWA, NAV), make sure to adjust the report fields to match the appropriate schema (e.g., v8, v9). Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Run\\\"};duplicate=1\",\"expected\":\". Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Run\\\"};duplicate=2\",\"expected\":\". Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Run\\\"};duplicate=3\",\"expected\":\". Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Verify your installation with\\\"};duplicate=1\",\"expected\":\". Verify your installation with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Verify your installation with\\\"};duplicate=2\",\"expected\":\". Verify your installation with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\":\\\"};duplicate=1\",\"expected\":\":\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add appropriate validations:\\\"};duplicate=1\",\"expected\":\"Add appropriate validations:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add custom error types for different failure scenarios\\\"};duplicate=1\",\"expected\":\"Add custom error types for different failure scenarios\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add the snappy dependency to your project:\\\"};duplicate=1\",\"expected\":\"Add the snappy dependency to your project:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Adjust report field access and logic for the schema version.\\\"};duplicate=1\",\"expected\":\"Adjust report field access and logic for the schema version.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Also ensure you have the required TypeScript dependencies:\\\"};duplicate=1\",\"expected\":\"Also ensure you have the required TypeScript dependencies:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Build your program:\\\"};duplicate=1\",\"expected\":\"Build your program:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Computes the PDAs using Pubkey::find_program_derived_address\\\"};duplicate=1\",\"expected\":\"Computes the PDAs using Pubkey::find_program_derived_address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contains feed-specific configuration and constraints\\\"};duplicate=1\",\"expected\":\"Contains feed-specific configuration and constraints\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Custom feed-specific validations based on your use case\\\"};duplicate=1\",\"expected\":\"Custom feed-specific validations based on your use case\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy your program to devnet:\\\"};duplicate=1\",\"expected\":\"Deploy your program to devnet:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derived using the feed ID (first 32 bytes of the uncompressed signed report) as a seed\\\"};duplicate=1\",\"expected\":\"Derived using the feed ID (first 32 bytes of the uncompressed signed report) as a seed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Derived using the verifier program ID as a seed\\\"};duplicate=1\",\"expected\":\"Derived using the verifier program ID as a seed\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Devnet SOL: You'll need devnet SOL for deployment and testing. Use the\\\"};duplicate=1\",\"expected\":\"Devnet SOL: You'll need devnet SOL for deployment and testing. Use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Ensures that each feed's verification follows its designated rules\\\"};duplicate=1\",\"expected\":\"Ensures that each feed's verification follows its designated rules\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execute the test script to interact with your program:\\\"};duplicate=1\",\"expected\":\"Execute the test script to interact with your program:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect an output similar to the following:\\\"};duplicate=1\",\"expected\":\"Expect an output similar to the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Extracts the necessary seeds\\\"};duplicate=1\",\"expected\":\"Extracts the necessary seeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For v3 schema (as used in this example):\\\"};duplicate=1\",\"expected\":\"For v3 schema (as used in this example):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For v3 schema (as used in this example):\\\"};duplicate=2\",\"expected\":\"For v3 schema (as used in this example):\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For v8 schema:\\\"};duplicate=1\",\"expected\":\"For v8 schema:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For v8 schema:\\\"};duplicate=2\",\"expected\":\"For v8 schema:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Handle verification failures and invalid reports comprehensively\\\"};duplicate=1\",\"expected\":\"Handle verification failures and invalid reports comprehensively\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implement proper error reporting and logging for debugging\\\"};duplicate=1\",\"expected\":\"Implement proper error reporting and logging for debugging\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Implement robust error handling:\\\"};duplicate=1\",\"expected\":\"Implement robust error handling:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Import the correct schema version module. Examples:\\\"};duplicate=1\",\"expected\":\"Import the correct schema version module. Examples:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the tests directory, create a new file\\\"};duplicate=1\",\"expected\":\"In the tests directory, create a new file\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this section, you'll write a client script to interact with your deployed program, which will use\\\"};duplicate=1\",\"expected\":\"In this section, you'll write a client script to interact with your deployed program, which will use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In your program's manifest file (programs/example_verify/Cargo.toml), add the Chainlink Data Streams client and the report crate as dependencies:\\\"};duplicate=1\",\"expected\":\"In your program's manifest file (programs/example_verify/Cargo.toml), add the Chainlink Data Streams client and the report crate as dependencies:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Includes these derived addresses in the instruction data\\\"};duplicate=1\",\"expected\":\"Includes these derived addresses in the instruction data\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn more about\\\"};duplicate=1\",\"expected\":\"Learn more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Adapt the example\\\"};duplicate=1\",\"expected\":\"NOTE: Adapt the example\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to the project directory:\\\"};duplicate=1\",\"expected\":\"Navigate to the project directory:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to your program main file (programs/example_verify/src/lib.rs). This is where you'll write your program logic. Replace the contents of lib.rs with the following example code:\\\"};duplicate=1\",\"expected\":\"Navigate to your program main file (programs/example_verify/src/lib.rs). This is where you'll write your program logic. Replace the contents of lib.rs with the following example code:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note how the VerifierInstructions::verify helper method automatically handles the PDA computations internally. Refer to the\\\"};duplicate=1\",\"expected\":\"Note how the VerifierInstructions::verify helper method automatically handles the PDA computations internally. Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: The Program IDs and Access Controller Accounts are available on the\\\"};duplicate=1\",\"expected\":\"Note: The Program IDs and Access Controller Accounts are available on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: While this tutorial uses the Anchor framework for project structure, you can integrate the verification using any Rust-based Solana program framework. The verifier SDK is written in Rust, but you can integrate it into your preferred Rust program structure.\\\"};duplicate=1\",\"expected\":\"Note: While this tutorial uses the Anchor framework for project structure, you can integrate the verification using any Rust-based Solana program framework. The verifier SDK is written in Rust, but you can integrate it into your preferred Rust program structure.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: snappy is a compression library used to compress the report data before sending it to the verifier.\\\"};duplicate=1\",\"expected\":\"Note: snappy is a compression library used to compress the report data before sending it to the verifier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your Anchor.toml file at the root of your project and update it to use devnet:\\\"};duplicate=1\",\"expected\":\"Open your Anchor.toml file at the root of your project and update it to use devnet:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open your terminal and run the following command to create a new Anchor project:\\\"};duplicate=1\",\"expected\":\"Open your terminal and run the following command to create a new Anchor project:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Populate your verify_tests.ts file with the example client script below.\\\"};duplicate=1\",\"expected\":\"Populate your verify_tests.ts file with the example client script below.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Price threshold checks to prevent processing extreme values\\\"};duplicate=1\",\"expected\":\"Price threshold checks to prevent processing extreme values\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Refer to the\\\"};duplicate=1\",\"expected\":\"Refer to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with your program ID in the declare_id! macro. You can run\\\"};duplicate=1\",\"expected\":\"Replace with your program ID in the declare_id! macro. You can run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with your program ID. You can run\\\"};duplicate=1\",\"expected\":\"Replace with your program ID. You can run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with your program ID.\\\"};duplicate=1\",\"expected\":\"Replace with your program ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace ~/.config/solana/id.json with the path to your Solana wallet (e.g., /Users/username/.config/solana/id.json).\\\"};duplicate=1\",\"expected\":\"Replace ~/.config/solana/id.json with the path to your Solana wallet (e.g., /Users/username/.config/solana/id.json).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Report config account PDA:\\\"};duplicate=1\",\"expected\":\"Report config account PDA:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Stores verification-specific configuration\\\"};duplicate=1\",\"expected\":\"Stores verification-specific configuration\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The SDK's VerifierInstructions::verify helper method performs these steps:\\\"};duplicate=1\",\"expected\":\"The SDK's VerifierInstructions::verify helper method performs these steps:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The above example verifies report data from the\\\"};duplicate=1\",\"expected\":\"The above example verifies report data from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The fields you access and log (e.g., feed_id, benchmark_price, bid, ask, etc.) must match the schema version's structure and available fields.\\\"};duplicate=1\",\"expected\":\"The fields you access and log (e.g., feed_id, benchmark_price, bid, ask, etc.) must match the schema version's structure and available fields.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The verification process relies on two important PDAs that are handled automatically by the\\\"};duplicate=1\",\"expected\":\"The verification process relies on two important PDAs that are handled automatically by the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This command creates a new directory named example_verify with the basic structure of an Anchor project.\\\"};duplicate=1\",\"expected\":\"This command creates a new directory named example_verify with the basic structure of an Anchor project.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example provides a report payload. To use your own report payload, update the hexString variable.\\\"};duplicate=1\",\"expected\":\"This example provides a report payload. To use your own report payload, update the hexString variable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example uses the\\\"};duplicate=1\",\"expected\":\"This example uses the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial provides a basic example on how to verify reports. When you implement reports verification, consider the following best practices:\\\"};duplicate=1\",\"expected\":\"This tutorial provides a basic example on how to verify reports. When you implement reports verification, consider the following best practices:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Timestamp validations to ensure data freshness\\\"};duplicate=1\",\"expected\":\"Timestamp validations to ensure data freshness\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Update the decode function to use the correct schema version. Examples:\\\"};duplicate=1\",\"expected\":\"Update the decode function to use the correct schema version. Examples:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Used to ensure consistent verification parameters across all reports\\\"};duplicate=1\",\"expected\":\"Used to ensure consistent verification parameters across all reports\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verifier config account PDA:\\\"};duplicate=1\",\"expected\":\"Verifier config account PDA:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Verify the output logs to ensure the report data is processed correctly. Expect to see the decoded report fields logged to the console:\\\"};duplicate=1\",\"expected\":\"Verify the output logs to ensure the report data is processed correctly. Expect to see the decoded report fields logged to the console:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When working with different versions of\\\"};duplicate=1\",\"expected\":\"When working with different versions of\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"anchor --version\\\"};duplicate=1\",\"expected\":\"anchor --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for your stream.\\\"};duplicate=1\",\"expected\":\"for your stream.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for\\\"};duplicate=1\",\"expected\":\"for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"from the\\\"};duplicate=1\",\"expected\":\"from the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"instead.\\\"};duplicate=1\",\"expected\":\"instead.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"node --version\\\"};duplicate=1\",\"expected\":\"node --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npm install -g ts-node\\\"};duplicate=1\",\"expected\":\"npm install -g ts-node\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or the\\\"};duplicate=1\",\"expected\":\"or the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=1\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rustc --version\\\"};duplicate=1\",\"expected\":\"rustc --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"section for more information.\\\"};duplicate=1\",\"expected\":\"section for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"solana --version\\\"};duplicate=1\",\"expected\":\"solana --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"solana-keygen pubkey target/deploy/example_verify-keypair.json\\\"};duplicate=1\",\"expected\":\"solana-keygen pubkey target/deploy/example_verify-keypair.json\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"solana-keygen pubkey target/deploy/example_verify-keypair.json\\\"};duplicate=2\",\"expected\":\"solana-keygen pubkey target/deploy/example_verify-keypair.json\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to decode the report. If you verify reports for\\\"};duplicate=1\",\"expected\":\"to decode the report. If you verify reports for\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to get devnet SOL.\\\"};duplicate=1\",\"expected\":\"to get devnet SOL.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to get your program ID.\\\"};duplicate=1\",\"expected\":\"to get your program ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to get your program ID.\\\"};duplicate=2\",\"expected\":\"to get your program ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to interact with your deployed program.\\\"};duplicate=1\",\"expected\":\"to interact with your deployed program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify reports through the Chainlink Data Streams Verifier Program.\\\"};duplicate=1\",\"expected\":\"to verify reports through the Chainlink Data Streams Verifier Program.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation.\\\"};duplicate=1\",\"expected\":\"to verify your installation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation.\\\"};duplicate=2\",\"expected\":\"to verify your installation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation.\\\"};duplicate=3\",\"expected\":\"to verify your installation.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ts-node --version\\\"};duplicate=1\",\"expected\":\"ts-node --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ts-node: Install globally using npm:\\\"};duplicate=1\",\"expected\":\"ts-node: Install globally using npm:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"verify_test.ts\\\"};duplicate=1\",\"expected\":\"verify_test.ts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/solana-onchain-report-verification\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd6900000000000000000000000000000000000000000000000000000000055dec11000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000028001010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba7820000000000000000000000000000000000000000000000000000000069cfb8ca0000000000000000000000000000000000000000000000000000000069cfb8ca00000000000000000000000000000000000000000000000000008df4dc2c7e950000000000000000000000000000000000000000000000000082e2f86a9a40fd0000000000000000000000000000000000000000000000000000000069f745ca00000000000000000000000000000000000000000000006f24528cda20d2bd7000000000000000000000000000000000000000000000006f2415d249c56f254000000000000000000000000000000000000000000000006f25889bbe62ce70000000000000000000000000000000000000000000000000000000000000000002e0b88dec92d81f05ff7d1fced36e40b9b1a0f83ef0397fcda201abdca73b920599cb9d047d4e32c385a384801c306874cce05ca3f0f4e2ade196ad136ff42a8900000000000000000000000000000000000000000000000000000000000000025f86ce4a0315adbe7c9c62127744431f49a539b717ba454638158b853e99a6493e930836862f9ea99c02f6faf30e5a96e4faf96c277d2ca1e102eb66b5d688e0\\\"};duplicate=1\",\"expected\":\"00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd6900000000000000000000000000000000000000000000000000000000055dec11000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000028001010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba7820000000000000000000000000000000000000000000000000000000069cfb8ca0000000000000000000000000000000000000000000000000000000069cfb8ca00000000000000000000000000000000000000000000000000008df4dc2c7e950000000000000000000000000000000000000000000000000082e2f86a9a40fd0000000000000000000000000000000000000000000000000000000069f745ca00000000000000000000000000000000000000000000006f24528cda20d2bd7000000000000000000000000000000000000000000000006f2415d249c56f254000000000000000000000000000000000000000000000006f25889bbe62ce70000000000000000000000000000000000000000000000000000000000000000002e0b88dec92d81f05ff7d1fced36e40b9b1a0f83ef0397fcda201abdca73b920599cb9d047d4e32c385a384801c306874cce05ca3f0f4e2ade196ad136ff42a8900000000000000000000000000000000000000000000000000000000000000025f86ce4a0315adbe7c9c62127744431f49a539b717ba454638158b853e99a6493e930836862f9ea99c02f6faf30e5a96e4faf96c277d2ca1e102eb66b5d688e0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with the name you chose when running stellar keys generate. Run\\\"};duplicate=1\",\"expected\":\"Replace with the name you chose when running stellar keys generate. Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run\\\"};duplicate=1\",\"expected\":\"Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run\\\"};duplicate=2\",\"expected\":\"Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Tip: If you get an error like can't find crate for 'core', you didn't install the wasm32v1-none target. Run\\\"};duplicate=1\",\"expected\":\"Tip: If you get an error like can't find crate for 'core', you didn't install the wasm32v1-none target. Run\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and try again.\\\"};duplicate=1\",\"expected\":\"and try again.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rustc --version\\\"};duplicate=1\",\"expected\":\"rustc --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"rustup target add wasm32v1-none\\\"};duplicate=1\",\"expected\":\"rustup target add wasm32v1-none\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"stellar --version\\\"};duplicate=1\",\"expected\":\"stellar --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"stellar keys ls\\\"};duplicate=1\",\"expected\":\"stellar keys ls\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to list your available keys.\\\"};duplicate=1\",\"expected\":\"to list your available keys.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your installation. See the\\\"};duplicate=1\",\"expected\":\"to verify your installation. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to verify your version. If you're on a blocked version or need to update, run:\\\"};duplicate=1\",\"expected\":\"to verify your version. If you're on a blocked version or need to update, run:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/stellar-onchain-report-verification\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"StreamsNetworkAddressesTable\\\",\\\"reason\\\":\\\"Unsupported MDX component StreamsNetworkAddressesTable\\\"};duplicate=1\",\"component\":\"StreamsNetworkAddressesTable\",\"reason\":\"Unsupported MDX component StreamsNetworkAddressesTable\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ILogAutomation, Log} from \\\\\\\"@chainlink/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol\\\\\\\"; import { StreamsLookupCompatibleInterface } from \\\\\\\"@chainlink/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol\\\\\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE FOR DEMONSTRATION PURPOSES. * DO NOT USE THIS CODE IN PRODUCTION. */ // Custom interface for IVerifierProxy interface IVerifierProxy { /** * @notice Verifies that the data encoded has been signed. * correctly by routing to the correct verifier. * @param payload The encoded data to be verified, including the signed * report. * @param parameterPayload Empty bytes for Data Streams subscription billing. * @return verifierResponse The encoded report from the verifier. */ function verify( bytes calldata payload, bytes calldata parameterPayload ) external payable returns (bytes memory verifierResponse); } contract StreamsUpkeep is ILogAutomation, StreamsLookupCompatibleInterface { error InvalidReportVersion(uint16 version); // Thrown when an unsupported report version is provided to verifyReport. /** * @dev Represents a data report from a Data Streams stream for v3 schema (used for crypto and DEX State Price * streams). * The `price`, `bid`, and `ask` values are carried to either 8 or 18 decimal places, depending on the stream. * `bid`, and `ask` values are not available for DEX State Price streams. * For more information, see https://docs.chain.link/data-streams/crypto-streams and * https://docs.chain.link/data-streams/reference/report-schema */ struct ReportV3 { bytes32 feedId; // The stream ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median price (8 or 18 decimals). int192 bid; // Simulated price impact of a buy order up to the X% depth of liquidity utilisation (8 or 18 decimals). // Note: not available for DEX State Price streams. int192 ask; // Simulated price impact of a sell order up to the X% depth of liquidity utilisation (8 or 18 // decimals). Note: not available for DEX State Price streams. } /** * @dev Represents a data report from a Data Streams stream for v4 schema (RWA streams). * The `price` value is carried to either 8 or 18 decimal places, depending on the stream. * The `marketStatus` indicates whether the market is currently open. Possible values: `0` (`Unknown`), `1` * (`Closed`), `2` (`Open`). * For more information, see https://docs.chain.link/data-streams/rwa-streams and * https://docs.chain.link/data-streams/reference/report-schema-v4 */ struct ReportV4 { bytes32 feedId; // The stream ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median benchmark price (8 or 18 decimals). uint32 marketStatus; // The DON's consensus on whether the market is currently open. } struct Quote { address quoteAddress; } IVerifierProxy public verifier; string public constant DATASTREAMS_FEEDLABEL = \\\\\\\"feedIDs\\\\\\\"; string public constant DATASTREAMS_QUERYLABEL = \\\\\\\"timestamp\\\\\\\"; int192 public lastDecodedPrice; // This example reads the ID for the ETH/USD report. // Find a complete list of IDs at https://docs.chain.link/data-streams/crypto-streams. string[] public feedIds = [\\\\\\\"0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782\\\\\\\"]; constructor( address _verifier ) { verifier = IVerifierProxy(_verifier); } // This function uses revert to convey call information. // See https://eips.ethereum.org/EIPS/eip-3668#rationale for details. function checkLog( Log calldata log, bytes memory ) external returns (bool upkeepNeeded, bytes memory performData) { revert StreamsLookup(DATASTREAMS_FEEDLABEL, feedIds, DATASTREAMS_QUERYLABEL, log.timestamp, \\\\\\\"\\\\\\\"); } /** * @notice this is a new, optional function in streams lookup. It is meant to surface streams lookup errors. * @return upkeepNeeded boolean to indicate whether the keeper should call performUpkeep or not. * @return performData bytes that the keeper should call performUpkeep with, if * upkeep is needed. If you would like to encode data to decode later, try `abi.encode`. */ function checkErrorHandler( uint256, /*errCode*/ bytes memory /*extraData*/ ) external pure returns (bool upkeepNeeded, bytes memory performData) { return (true, \\\\\\\"0\\\\\\\"); // Hardcoded to always perform upkeep. // Read the StreamsLookup error handler guide for more information. // https://docs.chain.link/chainlink-automation/guides/streams-lookup-error-handler } // The Data Streams report bytes is passed here. // extraData is context data from stream lookup process. // Your contract may include logic to further process this data. // This method is intended only to be simulated offchain by Automation. // The data returned will then be passed by Automation into performUpkeep function checkCallback( bytes[] calldata values, bytes calldata extraData ) external pure returns (bool, bytes memory) { return (true, abi.encode(values, extraData)); } // function will be performed onchain function performUpkeep( bytes calldata performData ) external { // Decode the performData bytes passed in by CL Automation. // This contains the data returned by your implementation in checkCallback(). (bytes[] memory signedReports, bytes memory extraData) = abi.decode(performData, (bytes[], bytes)); bytes memory unverifiedReport = signedReports[0]; (, /* bytes32[3] reportContextData */ bytes memory reportData) = abi.decode(unverifiedReport, (bytes32[3], bytes)); // Extract report version from reportData uint16 reportVersion = (uint16(uint8(reportData[0])) << 8) | uint16(uint8(reportData[1])); // Validate report version if (reportVersion != 3 && reportVersion != 4) { revert InvalidReportVersion(uint8(reportVersion)); } // Verify the report. Data Streams uses subscription billing, so no fee metadata is required. bytes memory verifiedReportData = verifier.verify(unverifiedReport, bytes(\\\\\\\"\\\\\\\")); // Decode verified report data into the appropriate Report struct based on reportVersion if (reportVersion == 3) { // v3 report schema ReportV3 memory verifiedReport = abi.decode(verifiedReportData, (ReportV3)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } else if (reportVersion == 4) { // v4 report schema ReportV4 memory verifiedReport = abi.decode(verifiedReportData, (ReportV4)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ILogAutomation, Log} from \\\"@chainlink/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol\\\"; import { StreamsLookupCompatibleInterface } from \\\"@chainlink/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE FOR DEMONSTRATION PURPOSES. * DO NOT USE THIS CODE IN PRODUCTION. */ // Custom interface for IVerifierProxy interface IVerifierProxy { /** * @notice Verifies that the data encoded has been signed. * correctly by routing to the correct verifier. * @param payload The encoded data to be verified, including the signed * report. * @param parameterPayload Empty bytes for Data Streams subscription billing. * @return verifierResponse The encoded report from the verifier. */ function verify( bytes calldata payload, bytes calldata parameterPayload ) external payable returns (bytes memory verifierResponse); } contract StreamsUpkeep is ILogAutomation, StreamsLookupCompatibleInterface { error InvalidReportVersion(uint16 version); // Thrown when an unsupported report version is provided to verifyReport. /** * @dev Represents a data report from a Data Streams stream for v3 schema (used for crypto and DEX State Price * streams). * The `price`, `bid`, and `ask` values are carried to either 8 or 18 decimal places, depending on the stream. * `bid`, and `ask` values are not available for DEX State Price streams. * For more information, see https://docs.chain.link/data-streams/crypto-streams and * https://docs.chain.link/data-streams/reference/report-schema */ struct ReportV3 { bytes32 feedId; // The stream ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median price (8 or 18 decimals). int192 bid; // Simulated price impact of a buy order up to the X% depth of liquidity utilisation (8 or 18 decimals). // Note: not available for DEX State Price streams. int192 ask; // Simulated price impact of a sell order up to the X% depth of liquidity utilisation (8 or 18 // decimals). Note: not available for DEX State Price streams. } /** * @dev Represents a data report from a Data Streams stream for v4 schema (RWA streams). * The `price` value is carried to either 8 or 18 decimal places, depending on the stream. * The `marketStatus` indicates whether the market is currently open. Possible values: `0` (`Unknown`), `1` * (`Closed`), `2` (`Open`). * For more information, see https://docs.chain.link/data-streams/rwa-streams and * https://docs.chain.link/data-streams/reference/report-schema-v4 */ struct ReportV4 { bytes32 feedId; // The stream ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median benchmark price (8 or 18 decimals). uint32 marketStatus; // The DON's consensus on whether the market is currently open. } struct Quote { address quoteAddress; } IVerifierProxy public verifier; string public constant DATASTREAMS_FEEDLABEL = \\\"feedIDs\\\"; string public constant DATASTREAMS_QUERYLABEL = \\\"timestamp\\\"; int192 public lastDecodedPrice; // This example reads the ID for the ETH/USD report. // Find a complete list of IDs at https://docs.chain.link/data-streams/crypto-streams. string[] public feedIds = [\\\"0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782\\\"]; constructor( address _verifier ) { verifier = IVerifierProxy(_verifier); } // This function uses revert to convey call information. // See https://eips.ethereum.org/EIPS/eip-3668#rationale for details. function checkLog( Log calldata log, bytes memory ) external returns (bool upkeepNeeded, bytes memory performData) { revert StreamsLookup(DATASTREAMS_FEEDLABEL, feedIds, DATASTREAMS_QUERYLABEL, log.timestamp, \\\"\\\"); } /** * @notice this is a new, optional function in streams lookup. It is meant to surface streams lookup errors. * @return upkeepNeeded boolean to indicate whether the keeper should call performUpkeep or not. * @return performData bytes that the keeper should call performUpkeep with, if * upkeep is needed. If you would like to encode data to decode later, try `abi.encode`. */ function checkErrorHandler( uint256, /*errCode*/ bytes memory /*extraData*/ ) external pure returns (bool upkeepNeeded, bytes memory performData) { return (true, \\\"0\\\"); // Hardcoded to always perform upkeep. // Read the StreamsLookup error handler guide for more information. // https://docs.chain.link/chainlink-automation/guides/streams-lookup-error-handler } // The Data Streams report bytes is passed here. // extraData is context data from stream lookup process. // Your contract may include logic to further process this data. // This method is intended only to be simulated offchain by Automation. // The data returned will then be passed by Automation into performUpkeep function checkCallback( bytes[] calldata values, bytes calldata extraData ) external pure returns (bool, bytes memory) { return (true, abi.encode(values, extraData)); } // function will be performed onchain function performUpkeep( bytes calldata performData ) external { // Decode the performData bytes passed in by CL Automation. // This contains the data returned by your implementation in checkCallback(). (bytes[] memory signedReports, bytes memory extraData) = abi.decode(performData, (bytes[], bytes)); bytes memory unverifiedReport = signedReports[0]; (, /* bytes32[3] reportContextData */ bytes memory reportData) = abi.decode(unverifiedReport, (bytes32[3], bytes)); // Extract report version from reportData uint16 reportVersion = (uint16(uint8(reportData[0])) << 8) | uint16(uint8(reportData[1])); // Validate report version if (reportVersion != 3 && reportVersion != 4) { revert InvalidReportVersion(uint8(reportVersion)); } // Verify the report. Data Streams uses subscription billing, so no fee metadata is required. bytes memory verifiedReportData = verifier.verify(unverifiedReport, bytes(\\\"\\\")); // Decode verified report data into the appropriate Report struct based on reportVersion if (reportVersion == 3) { // v3 report schema ReportV3 memory verifiedReport = abi.decode(verifiedReportData, (ReportV3)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } else if (reportVersion == 4) { // v4 report schema ReportV4 memory verifiedReport = abi.decode(verifiedReportData, (ReportV4)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Before you begin\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Before you begin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Deploy the Chainlink Automation upkeep contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Deploy the Chainlink Automation upkeep contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Deploy the emitter contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Deploy the emitter contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Emit a log\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Emit a log\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Emitting a log, retrieving, and verifying the report\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Emitting a log, retrieving, and verifying the report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Examine the code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Feed ID types and conversion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Feed ID types and conversion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Fund the upkeep contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Fund the upkeep contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Initializing the upkeep contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Initializing the upkeep contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Optional: Handle Data Streams fetching errors offchain with checkErrorHandler\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Optional: Handle Data Streams fetching errors offchain with checkErrorHandler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Register the upkeep\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Register the upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Tutorial\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"View the retrieved price\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"View the retrieved price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Viewing the retrieved price\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Viewing the retrieved price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Architecture\\\",\\\"url\\\":\\\"/data-streams/architecture#example-trading-flow-using-streams-trade\\\"};duplicate=1\",\"expected\":\"Architecture -> /data-streams/architecture#example-trading-flow-using-streams-trade\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation Log Triggers\\\",\\\"url\\\":\\\"/chainlink-automation/guides/log-trigger\\\"};duplicate=1\",\"expected\":\"Automation Log Triggers -> /chainlink-automation/guides/log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation Log Trigger\\\",\\\"url\\\":\\\"/chainlink-automation/guides/log-trigger\\\"};duplicate=1\",\"expected\":\"Chainlink Automation Log Trigger -> /chainlink-automation/guides/log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation UI\\\",\\\"url\\\":\\\"https://automation.chain.link/arbitrum-sepolia\\\"};duplicate=1\",\"expected\":\"Chainlink Automation UI -> https://automation.chain.link/arbitrum-sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation UI\\\",\\\"url\\\":\\\"https://automation.chain.link/arbitrum-sepolia\\\"};duplicate=2\",\"expected\":\"Chainlink Automation UI -> https://automation.chain.link/arbitrum-sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Contact us\\\",\\\"url\\\":\\\"https://chainlinkcommunity.typeform.com/datastreams?typeform-source=docs.chain.link#ref_id=docs\\\"};duplicate=1\",\"expected\":\"Contact us -> https://chainlinkcommunity.typeform.com/datastreams?typeform-source=docs.chain.link#ref_id=docs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Streams Crypto streams\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"Data Streams Crypto streams -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Streams Crypto streams\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=2\",\"expected\":\"Data Streams Crypto streams -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Deploy Your First Smart Contract\\\",\\\"url\\\":\\\"/quickstarts/deploy-your-first-contract\\\"};duplicate=1\",\"expected\":\"Deploy Your First Smart Contract -> /quickstarts/deploy-your-first-contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EIP-3668 rationale\\\",\\\"url\\\":\\\"https://eips.ethereum.org/EIPS/eip-3668#rationale\\\"};duplicate=1\",\"expected\":\"EIP-3668 rationale -> https://eips.ethereum.org/EIPS/eip-3668#rationale\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Fetch and decode reports via a REST API\\\",\\\"url\\\":\\\"/data-streams/tutorials/go-sdk-fetch\\\"};duplicate=1\",\"expected\":\"Fetch and decode reports via a REST API -> /data-streams/tutorials/go-sdk-fetch\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Fund your contract with LINK\\\",\\\"url\\\":\\\"/resources/fund-your-contract\\\"};duplicate=1\",\"expected\":\"Fund your contract with LINK -> /resources/fund-your-contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"HTTP requests\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-http-client\\\"};duplicate=1\",\"expected\":\"HTTP requests -> /cre/guides/workflow/using-http-client\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK Token Contracts\\\",\\\"url\\\":\\\"/resources/link-token-contracts#arbitrum-sepolia-testnet\\\"};duplicate=1\",\"expected\":\"LINK Token Contracts -> /resources/link-token-contracts#arbitrum-sepolia-testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"MetaMask\\\",\\\"url\\\":\\\"https://metamask.io\\\"};duplicate=1\",\"expected\":\"MetaMask -> https://metamask.io\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open LogEmitter.sol in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/LogEmitter.sol\\\"};duplicate=1\",\"expected\":\"Open LogEmitter.sol in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/LogEmitter.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open StreamsUpkeep.sol in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/StreamsUpkeep.sol\\\"};duplicate=1\",\"expected\":\"Open StreamsUpkeep.sol in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/StreamsUpkeep.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open the LogEmitter.sol\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/LogEmitter.sol\\\"};duplicate=1\",\"expected\":\"Open the LogEmitter.sol -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/LogEmitter.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open the StreamsUpkeep.sol\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/StreamsUpkeep.sol\\\"};duplicate=1\",\"expected\":\"Open the StreamsUpkeep.sol -> https://remix.ethereum.org/#url=https://docs.chain.link/samples/DataStreams/StreamsUpkeep.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/\\\"};duplicate=1\",\"expected\":\"Remix -> https://remix.ethereum.org/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Report Schemas\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v3\\\"};duplicate=1\",\"expected\":\"Report Schemas -> /data-streams/reference/report-schema-v3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Solidity\\\",\\\"url\\\":\\\"https://soliditylang.org/\\\"};duplicate=1\",\"expected\":\"Solidity -> https://soliditylang.org/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Stream Addresses\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"Stream Addresses -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Stream Addresses\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=2\",\"expected\":\"Stream Addresses -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Stream and decode reports via WebSocket\\\",\\\"url\\\":\\\"/data-streams/tutorials/go-sdk-stream\\\"};duplicate=1\",\"expected\":\"Stream and decode reports via WebSocket -> /data-streams/tutorials/go-sdk-stream\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Streams Trade\\\",\\\"url\\\":\\\"/data-streams/streams-trade\\\"};duplicate=1\",\"expected\":\"Streams Trade -> /data-streams/streams-trade\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StreamsLookup error\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol#L6\\\"};duplicate=1\",\"expected\":\"StreamsLookup error -> https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol#L6\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/arbitrum-sepolia\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/arbitrum-sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain event triggers\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-triggers/evm-log-trigger\\\"};duplicate=1\",\"expected\":\"onchain event triggers -> /cre/guides/workflow/using-triggers/evm-log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain execution\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-write/overview\\\"};duplicate=1\",\"expected\":\"onchain execution -> /cre/guides/workflow/using-evm-client/onchain-write/overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"performUpkeep function\\\",\\\"url\\\":\\\"/chainlink-automation/reference/automation-interfaces#performupkeep-function-for-log-triggers\\\"};duplicate=1\",\"expected\":\"performUpkeep function -> /chainlink-automation/reference/automation-interfaces#performupkeep-function-for-log-triggers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"using the StreamsLookup error handler\\\",\\\"url\\\":\\\"/chainlink-automation/guides/streams-lookup-error-handler\\\"};duplicate=1\",\"expected\":\"using the StreamsLookup error handler -> /chainlink-automation/guides/streams-lookup-error-handler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"workflows\\\",\\\"url\\\":\\\"/cre/key-terms#workflow\\\"};duplicate=1\",\"expected\":\"workflows -> /cre/key-terms#workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Deploy Emitter Contract)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Deploy Emitter Contract)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Deployed Emitter Contract)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Deployed Emitter Contract)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Deployed Upkeep)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Deployed Upkeep)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Emit Log)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Emit Log)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Fund Deployed Upkeep)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Fund Deployed Upkeep)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Injected Provider MetaMask)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Injected Provider MetaMask)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Injected Provider MetaMask)\\\"};duplicate=2\",\"expected\":\"(Image: Chainlink Data Streams Injected Provider MetaMask)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Remix Compile Log Emitter Contract)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Remix Compile Log Emitter Contract)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Remix Deploy Upkeep Contract)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Remix Deploy Upkeep Contract)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Remix Deployed Upkeep Contract)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Remix Deployed Upkeep Contract)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Remix Log Emitter ABI)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Remix Log Emitter ABI)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Chainlink Data Streams Solidity Compiler)\\\"};duplicate=1\",\"expected\":\"(Image: Chainlink Data Streams Solidity Compiler)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=1\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Check to make sure the transaction is successful.\\\"};duplicate=1\",\"expected\":\". Check to make sure the transaction is successful.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". See the\\\"};duplicate=1\",\"expected\":\". See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can find the verifier proxy addresses on the\\\"};duplicate=1\",\"expected\":\". You can find the verifier proxy addresses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782\\\"};duplicate=1\",\"expected\":\"0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\\\"};duplicate=1\",\"expected\":\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After registering your upkeep contract with Chainlink Automation with a log trigger, you can emit a log with the emitLog function from your emitter contract.\\\"};duplicate=1\",\"expected\":\"After registering your upkeep contract with Chainlink Automation with a log trigger, you can emit a log with the emitLog function from your emitter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is complete, the log is emitted, and the upkeep is triggered. You can find the upkeep transaction hash in the\\\"};duplicate=1\",\"expected\":\"After the transaction is complete, the log is emitted, and the upkeep is triggered. You can find the upkeep transaction hash in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Save this contract address for later.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears in the Deployed Contracts list. Save this contract address for later.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you confirm the transaction, the contract address appears under the Deployed Contracts list in Remix. Save this contract address for later.\\\"};duplicate=1\",\"expected\":\"After you confirm the transaction, the contract address appears under the Deployed Contracts list in Remix. Save this contract address for later.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia testnet and LINK token contract\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia testnet and LINK token contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Disclaimer\\\"};duplicate=1\",\"expected\":\"CAUTION: Disclaimer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE natively includes\\\"};duplicate=1\",\"expected\":\"CRE natively includes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, returns the data in a callback (checkCallback), and runs the performUpkeep function on your registered upkeep contract.\\\"};duplicate=1\",\"expected\":\"Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, returns the data in a callback (checkCallback), and runs the performUpkeep function on your registered upkeep contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Data Streams uses different data types for feed IDs at different stages of the process:\\\"};duplicate=1\",\"expected\":\"Chainlink Data Streams uses different data types for feed IDs at different stages of the process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Register new Upkeep.\\\"};duplicate=1\",\"expected\":\"Click Register new Upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to ensure you deploy the contract to Arbitrum Sepolia.\\\"};duplicate=1\",\"expected\":\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to ensure you deploy the contract to Arbitrum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to ensure you deploy the contract to Arbitrum Sepolia.\\\"};duplicate=2\",\"expected\":\"Click the Deploy button to deploy the contract. MetaMask prompts you to confirm the transaction. Check the transaction details to ensure you deploy the contract to Arbitrum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the emitLog button to call the function and emit a log. MetaMask prompts you to accept the transaction.\\\"};duplicate=1\",\"expected\":\"Click the emitLog button to call the function and emit a log. MetaMask prompts you to accept the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the lastDecodedPrice getter function to view the retrieved price. The answer on the ETH/USD stream uses 18 decimal places, so an answer of 248412100000000000 indicates an ETH/USD price of 2,484.121. Some streams may use a different number of decimal places for answers. See the\\\"};duplicate=1\",\"expected\":\"Click the lastDecodedPrice getter function to view the retrieved price. The answer on the ETH/USD stream uses 18 decimal places, so an answer of 248412100000000000 indicates an ETH/USD price of 2,484.121. Some streams may use a different number of decimal places for answers. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Compile the contract. You can ignore the warning messages for this example.\\\"};duplicate=1\",\"expected\":\"Compile the contract. You can ignore the warning messages for this example.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy an upkeep contract that is enabled to retrieve data from Data Streams. For this example, you will read from the ETH/USD stream on Arbitrum Sepolia. This stream ID is\\\"};duplicate=1\",\"expected\":\"Deploy an upkeep contract that is enabled to retrieve data from Data Streams. For this example, you will read from the ETH/USD stream on Arbitrum Sepolia. This stream ID is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go to the\\\"};duplicate=1\",\"expected\":\"Go to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you are new to smart contract development, learn how to\\\"};duplicate=1\",\"expected\":\"If you are new to smart contract development, learn how to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If your application needs to compare the feed ID(s) sent in the StreamsLookup with those received in the report(s), you must convert between string and bytes32 types.\\\"};duplicate=1\",\"expected\":\"If your application needs to compare the feed ID(s) sent in the StreamsLookup with those received in the report(s), you must convert between string and bytes32 types.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In Remix, on the Deploy & Run Transactions tab, expand your emitter contract under the Deployed Contracts section.\\\"};duplicate=1\",\"expected\":\"In Remix, on the Deploy & Run Transactions tab, expand your emitter contract under the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the Contract section, select the StreamsUpkeep contract and fill in the Arbitrum Sepolia verifier proxy address:\\\"};duplicate=1\",\"expected\":\"In the Contract section, select the StreamsUpkeep contract and fill in the Arbitrum Sepolia verifier proxy address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this example, the checkErrorHandler is set to always return true for upkeepNeeded. This implies that the upkeep is always triggered, even if the report fetching fails. You can modify the checkErrorHandler function to handle errors offchain in a way that works for your specific use case. Read more about\\\"};duplicate=1\",\"expected\":\"In this example, the checkErrorHandler is set to always return true for upkeepNeeded. This implies that the upkeep is always triggered, even if the report fetching fails. You can modify the checkErrorHandler function to handle errors offchain in a way that works for your specific use case. Read more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this example, the performUpkeep function also stores the price from the report in the lastDecodedPrice state variable.\\\"};duplicate=1\",\"expected\":\"In this example, the performUpkeep function also stores the price from the report in the lastDecodedPrice state variable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this example, the upkeep contract pays for onchain verification of reports from Data Streams. The Automation subscription does not cover the cost.\\\"};duplicate=1\",\"expected\":\"In this example, the upkeep contract pays for onchain verification of reports from Data Streams. The Automation subscription does not cover the cost.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Learn how to\\\"};duplicate=1\",\"expected\":\"Learn how to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Leave the Check data value and other fields blank for now, and click Register Upkeep. MetaMask prompts you to confirm the transaction. Wait for the transaction to complete.\\\"};duplicate=1\",\"expected\":\"Leave the Check data value and other fields blank for now, and click Register Upkeep. MetaMask prompts you to confirm the transaction. Wait for the transaction to complete.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: To learn how to use Data Streams with the REST API or WebSocket, see the\\\"};duplicate=1\",\"expected\":\"Note: To learn how to use Data Streams with the REST API or WebSocket, see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, ensure the Environment is still set to Injected Provider - MetaMask.\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, ensure the Environment is still set to Injected Provider - MetaMask.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, expand the details of your upkeep contract in the Deployed Contracts section.\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, expand the details of your upkeep contract in the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy & Run Transactions tab in Remix, select Injected Provider - MetaMask in the Environment list. Remix will use the MetaMask wallet to communicate with Arbitrum Sepolia.\\\"};duplicate=1\",\"expected\":\"On the Deploy & Run Transactions tab in Remix, select Injected Provider - MetaMask in the Environment list. Remix will use the MetaMask wallet to communicate with Arbitrum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and make sure the network is still set to Arbitrum Sepolia.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and make sure the network is still set to Arbitrum Sepolia.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and send 1 testnet LINK on Arbitrum Sepolia to the upkeep contract address you saved earlier.\\\"};duplicate=1\",\"expected\":\"Open MetaMask and send 1 testnet LINK on Arbitrum Sepolia to the upkeep contract address you saved earlier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open MetaMask and set the network to Arbitrum Sepolia. If you need to add Arbitrum Sepolia to your wallet, you can find the chain ID and the LINK token contract address on the\\\"};duplicate=1\",\"expected\":\"Open MetaMask and set the network to Arbitrum Sepolia. If you need to add Arbitrum Sepolia to your wallet, you can find the chain ID and the LINK token contract address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Provide the ABI if the contract is not validated. To find the ABI of your contract in Remix, navigate to the Solidity Compiler tab. Then, copy the ABI to your clipboard using the button at the bottom of the panel.\\\"};duplicate=1\",\"expected\":\"Provide the ABI if the contract is not validated. To find the ABI of your contract in Remix, navigate to the Solidity Compiler tab. Then, copy the ABI to your clipboard using the button at the bottom of the panel.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Register a new Log trigger upkeep. See\\\"};duplicate=1\",\"expected\":\"Register a new Log trigger upkeep. See\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select the Log event as the triggering event in the Emitted log dropdown. Log index topic filters are optional filters to narrow the logs you want to trigger your upkeep. For this example, leave the field blank. Click Next.\\\"};duplicate=1\",\"expected\":\"Select the Log event as the triggering event in the Emitted log dropdown. Log index topic filters are optional filters to narrow the logs you want to trigger your upkeep. For this example, leave the field blank. Click Next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select the Log trigger upkeep type and click Next.\\\"};duplicate=1\",\"expected\":\"Select the Log trigger upkeep type and click Next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select the StreamsUpkeep.sol contract in the Solidity Compiler tab.\\\"};duplicate=1\",\"expected\":\"Select the StreamsUpkeep.sol contract in the Solidity Compiler tab.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specify a Starting balance of 1 testnet LINK for this example. You can retrieve unused LINK later.\\\"};duplicate=1\",\"expected\":\"Specify a Starting balance of 1 testnet LINK for this example. You can retrieve unused LINK later.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specify a name for the upkeep.\\\"};duplicate=1\",\"expected\":\"Specify a name for the upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specify the emitter contract address that you saved earlier. This tells Chainlink Automation what contracts to watch for log triggers. Then click Next.\\\"};duplicate=1\",\"expected\":\"Specify the emitter contract address that you saved earlier. This tells Chainlink Automation what contracts to watch for log triggers. Then click Next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specify the upkeep contract address you saved earlier as the Contract to automate. In this example, you can ignore the warning about the Automation compatible contract verification. Click Next.\\\"};duplicate=1\",\"expected\":\"Specify the upkeep contract address you saved earlier as the Contract to automate. In this example, you can ignore the warning about the Automation compatible contract verification. Click Next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The code example uses revert with StreamsLookup to convey call information about what streams to retrieve. See the\\\"};duplicate=1\",\"expected\":\"The code example uses revert with StreamsLookup to convey call information about what streams to retrieve. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decoded reports within the contract use bytes32 types for feed IDs (see the\\\"};duplicate=1\",\"expected\":\"The decoded reports within the contract use bytes32 types for feed IDs (see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The emitted log triggers the Chainlink Automation upkeep.\\\"};duplicate=1\",\"expected\":\"The emitted log triggers the Chainlink Automation upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The example code you deployed has all the interfaces and functions required to work with Chainlink Automation as an upkeep contract. It follows a similar flow to the trading flow in the\\\"};duplicate=1\",\"expected\":\"The example code you deployed has all the interfaces and functions required to work with Chainlink Automation as an upkeep contract. It follows a similar flow to the trading flow in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The lastDecodedPrice getter function of your upkeep contract retrieves the last price stored by the performUpkeep function in the lastDecodedPrice state variable of the StreamsUpkeep contract.\\\"};duplicate=1\",\"expected\":\"The lastDecodedPrice getter function of your upkeep contract retrieves the last price stored by the performUpkeep function in the lastDecodedPrice state variable of the StreamsUpkeep contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The performUpkeep function calls the verify function on the verifier contract to verify the report onchain.\\\"};duplicate=1\",\"expected\":\"The performUpkeep function calls the verify function on the verifier contract to verify the report onchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The retrieved price is stored in the lastDecodedPrice storage variable.\\\"};duplicate=1\",\"expected\":\"The retrieved price is stored in the lastDecodedPrice storage variable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The verify function to verify the report onchain.\\\"};duplicate=1\",\"expected\":\"The verify function to verify the report onchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The\\\"};duplicate=1\",\"expected\":\"The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The\\\"};duplicate=2\",\"expected\":\"The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The\\\"};duplicate=3\",\"expected\":\"The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This contract emits logs that trigger the upkeep. This code can be part of your dApp. For example, you might emit log triggers when your users initiate a trade or other action requiring data retrieval. For this Getting Started guide, use a very simple emitter so you can test the upkeep and data retrieval.\\\"};duplicate=1\",\"expected\":\"This contract emits logs that trigger the upkeep. This code can be part of your dApp. For example, you might emit log triggers when your users initiate a trade or other action requiring data retrieval. For this Getting Started guide, use a very simple emitter so you can test the upkeep and data retrieval.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example uses the\\\"};duplicate=1\",\"expected\":\"This example uses the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This guide represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\\\\\"AS IS\\\\\\\" and \\\\\\\"AS AVAILABLE\\\\\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\\\"};duplicate=1\",\"expected\":\"This guide represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\"AS IS\\\" and \\\"AS AVAILABLE\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This guide requires testnet ETH and LINK on Arbitrum Sepolia. Both are available at\\\"};duplicate=1\",\"expected\":\"This guide requires testnet ETH and LINK on Arbitrum Sepolia. Both are available at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This guide shows you how to read data from a Data Streams stream, verify the answer onchain, and store it.\\\"};duplicate=1\",\"expected\":\"This guide shows you how to read data from a Data Streams stream, verify the answer onchain, and store it.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Solidity Compiler tab, select the 0.8.19 Solidity compiler and click the Compile LogEmitter.sol button to compile the contract.\\\"};duplicate=1\",\"expected\":\"Under the Solidity Compiler tab, select the 0.8.19 Solidity compiler and click the Compile LogEmitter.sol button to compile the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When Automation detects the triggering event, it runs the checkLog function of your upkeep contract, which includes a StreamsLookup revert custom error. The StreamsLookup revert enables your upkeep to fetch a report from the Data Streams Aggregation Network. If the report is fetched successfully, the checkCallback function is evaluated offchain. Otherwise, the checkErrorHandler function is evaluated offchain to determine what Automation should do next.\\\"};duplicate=1\",\"expected\":\"When Automation detects the triggering event, it runs the checkLog function of your upkeep contract, which includes a StreamsLookup revert custom error. The StreamsLookup revert enables your upkeep to fetch a report from the Data Streams Aggregation Network. If the report is fetched successfully, the checkCallback function is evaluated offchain. Otherwise, the checkErrorHandler function is evaluated offchain to determine what Automation should do next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When you deploy the contract, you define the verifier proxy address. You can find this address on the\\\"};duplicate=1\",\"expected\":\"When you deploy the contract, you define the verifier proxy address. You can find this address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can use your emitter contract to emit a log and initiate the upkeep, which retrieves data for the specified stream ID.\\\"};duplicate=1\",\"expected\":\"You can use your emitter contract to emit a log and initiate the upkeep, which retrieves data for the specified stream ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as first-class capabilities in composable, code-first\\\"};duplicate=1\",\"expected\":\"as first-class capabilities in composable, code-first\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contract in Remix.\\\"};duplicate=1\",\"expected\":\"contract in Remix.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contract in Remix.\\\"};duplicate=2\",\"expected\":\"contract in Remix.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"development environment\\\"};duplicate=1\",\"expected\":\"development environment\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"documentation but uses a basic log emitter to simulate the client contract that would initiate a StreamsLookup. After the contract receives and verifies the report, performUpkeep stores the price from the report in the lastDecodedPrice variable. You could modify this to use the data in a way that works for your specific use case and application.\\\"};duplicate=1\",\"expected\":\"documentation but uses a basic log emitter to simulate the client contract that would initiate a StreamsLookup. After the contract receives and verifies the report, performUpkeep stores the price from the report in the lastDecodedPrice variable. You could modify this to use the data in a way that works for your specific use case and application.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for Arbitrum Sepolia and connect your browser wallet.\\\"};duplicate=1\",\"expected\":\"for Arbitrum Sepolia and connect your browser wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for more information about how to use revert in this way.\\\"};duplicate=1\",\"expected\":\"for more information about how to use revert in this way.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide or the\\\"};duplicate=1\",\"expected\":\"guide or the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide.\\\"};duplicate=1\",\"expected\":\"guide.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"implementation, with a\\\"};duplicate=1\",\"expected\":\"implementation, with a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on your registered upkeep contract. The performUpkeep function calls the verify function on the verifier contract.\\\"};duplicate=1\",\"expected\":\"on your registered upkeep contract. The performUpkeep function calls the verify function on the verifier contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page for a complete list of available crypto assets.\\\"};duplicate=1\",\"expected\":\"page for a complete list of available crypto assets.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page for more information.\\\"};duplicate=1\",\"expected\":\"page for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. The IVerifierProxy interface provides the following functions:\\\"};duplicate=1\",\"expected\":\"page. The IVerifierProxy interface provides the following functions:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=1\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=2\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"programming language\\\"};duplicate=1\",\"expected\":\"programming language\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"reference).\\\"};duplicate=1\",\"expected\":\"reference).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requires feed IDs to be provided as an array of string,\\\"};duplicate=1\",\"expected\":\"requires feed IDs to be provided as an array of string,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"so you are familiar with the tools that are necessary for this guide:\\\"};duplicate=1\",\"expected\":\"so you are familiar with the tools that are necessary for this guide:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to check for events that require data. For this example, the log trigger comes from a simple emitter contract. Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, return the data in a callback, and run the\\\"};duplicate=1\",\"expected\":\"to check for events that require data. For this example, the log trigger comes from a simple emitter contract. Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, return the data in a callback, and run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to learn more about how to register Log Trigger upkeeps.\\\"};duplicate=1\",\"expected\":\"to learn more about how to register Log Trigger upkeeps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to request mainnet or testnet access.\\\"};duplicate=1\",\"expected\":\"to request mainnet or testnet access.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"wallet\\\"};duplicate=1\",\"expected\":\"wallet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"written in Go or TypeScript.\\\"};duplicate=1\",\"expected\":\"written in Go or TypeScript.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"$ node -v v20.11.0\\\"};duplicate=1\",\"expected\":\"$ node -v v20.11.0\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ILogAutomation, Log} from \\\\\\\"@chainlink/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol\\\\\\\"; import { StreamsLookupCompatibleInterface } from \\\\\\\"@chainlink/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol\\\\\\\"; import {LinkTokenInterface} from \\\\\\\"@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.sol\\\\\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE FOR DEMONSTRATION PURPOSES. * DO NOT USE THIS CODE IN PRODUCTION. */ /** * @dev Defines the parameters required to register a new upkeep. * @param name The name of the upkeep to be registered. * @param encryptedEmail An encrypted email address associated with the upkeep (optional). * @param upkeepContract The address of the contract that requires upkeep. * @param gasLimit The maximum amount of gas to be used for the upkeep execution. * @param adminAddress The address that will have administrative privileges over the upkeep. * @param triggerType An identifier for the type of trigger that initiates the upkeep (`1` for event-based). * @param checkData Data passed to the checkUpkeep function to simulate conditions for triggering upkeep. * @param triggerConfig Configuration parameters specific to the trigger type. * @param offchainConfig Off-chain configuration data, if applicable. * @param amount The amount of LINK tokens to fund the upkeep registration. */ struct RegistrationParams { string name; bytes encryptedEmail; address upkeepContract; uint32 gasLimit; address adminAddress; uint8 triggerType; bytes checkData; bytes triggerConfig; bytes offchainConfig; uint96 amount; } /** * @dev Interface for the Automation Registrar contract. */ interface AutomationRegistrarInterface { /** * @dev Registers a new upkeep contract with Chainlink Automation. * @param requestParams The parameters required for the upkeep registration, encapsulated in `RegistrationParams`. * @return upkeepID The unique identifier for the registered upkeep, used for future interactions. */ function registerUpkeep( RegistrationParams calldata requestParams ) external returns (uint256); } // Custom interface for Data Streams: IVerifierProxy interface IVerifierProxy { function verify( bytes calldata payload, bytes calldata parameterPayload ) external payable returns (bytes memory verifierResponse); } contract StreamsUpkeepRegistrar is ILogAutomation, StreamsLookupCompatibleInterface { error InvalidReportVersion(uint16 version); // Thrown when an unsupported report version is provided to verifyReport. LinkTokenInterface public immutable i_link; AutomationRegistrarInterface public immutable i_registrar; /** * @dev Represents a data report from a stream for v3 schema (crypto and DEX State Price streams). * The `price`, `bid`, and `ask` values are carried to either 8 or 18 decimal places, depending on the stream. * `bid`, and `ask` values are not available for DEX State Price streams. * For more information, see https://docs.chain.link/data-streams/crypto-streams and * https://docs.chain.link/data-streams/reference/report-schema */ struct ReportV3 { bytes32 feedId; // The feed ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median price (8 or 18 decimals). int192 bid; // Simulated price impact of a buy order up to the X% depth of liquidity utilisation (8 or 18 decimals). // Note: not available for DEX State Price streams. int192 ask; // Simulated price impact of a sell order up to the X% depth of liquidity utilisation (8 or 18 // decimals). Note: not available for DEX State Price streams. } /** * @dev Represents a data report from a Data Streams feed for v4 schema (RWA feeds). * The `price` value is carried to either 8 or 18 decimal places, depending on the feed. * The `marketStatus` indicates whether the market is currently open. Possible values: `0` (`Unknown`), `1` * (`Closed`), `2` (`Open`). * For more information, see https://docs.chain.link/data-streams/rwa-streams and * https://docs.chain.link/data-streams/reference/report-schema-v4 */ struct ReportV4 { bytes32 feedId; // The feed ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median benchmark price (8 or 18 decimals). uint32 marketStatus; // The DON's consensus on whether the market is currently open. } struct Quote { address quoteAddress; } event PriceUpdate(int192 indexed price); IVerifierProxy public verifier; string public constant DATASTREAMS_FEEDLABEL = \\\\\\\"feedIDs\\\\\\\"; string public constant DATASTREAMS_QUERYLABEL = \\\\\\\"timestamp\\\\\\\"; int192 public lastDecodedPrice; uint256 s_upkeepID; bytes public s_LogTriggerConfig; // Find a complete list of IDs at https://docs.chain.link/data-streams/crypto-streams string[] public feedIds; constructor( address _verifier, LinkTokenInterface link, AutomationRegistrarInterface registrar, string[] memory _feedIds ) { verifier = IVerifierProxy(_verifier); i_link = link; i_registrar = registrar; feedIds = _feedIds; } /** * @notice Registers a new upkeep using the specified parameters and predicts its ID. * @dev This function first approves the transfer of LINK tokens specified in `params.amount` to the Automation * Registrar contract. * It then registers the upkeep and stores its ID if registration is successful. * Reverts if auto-approve is disabled or registration fails. * @param params The registration parameters, including name, upkeep contract address, gas limit, admin address, * trigger type, and funding amount. */ function registerAndPredictID( RegistrationParams memory params ) public { i_link.approve(address(i_registrar), params.amount); uint256 upkeepID = i_registrar.registerUpkeep(params); if (upkeepID != 0) { s_upkeepID = upkeepID; // DEV - Use the upkeepID however you see fit } else { revert(\\\\\\\"auto-approve disabled\\\\\\\"); } } /** * @notice this is a new, optional function in streams lookup. It is meant to surface streams lookup errors. * @return upkeepNeeded boolean to indicate whether the keeper should call performUpkeep or not. * @return performData bytes that the keeper should call performUpkeep with, if * upkeep is needed. If you would like to encode data to decode later, try `abi.encode`. */ function checkErrorHandler( uint256, /*errCode*/ bytes memory /*extraData*/ ) external pure returns (bool upkeepNeeded, bytes memory performData) { return (true, \\\\\\\"0\\\\\\\"); // Hardcoded to always perform upkeep. // Read the StreamsLookup error handler guide for more information. // https://docs.chain.link/chainlink-automation/guides/streams-lookup-error-handler } // This function uses revert to convey call information. // See https://eips.ethereum.org/EIPS/eip-3668#rationale for details. function checkLog( Log calldata log, bytes memory ) external returns (bool upkeepNeeded, bytes memory performData) { revert StreamsLookup(DATASTREAMS_FEEDLABEL, feedIds, DATASTREAMS_QUERYLABEL, log.timestamp, \\\\\\\"\\\\\\\"); } // The Data Streams report bytes is passed here. // extraData is context data from feed lookup process. // Your contract may include logic to further process this data. // This method is intended only to be simulated offchain by Automation. // The data returned will then be passed by Automation into performUpkeep function checkCallback( bytes[] calldata values, bytes calldata extraData ) external pure returns (bool, bytes memory) { return (true, abi.encode(values, extraData)); } // function will be performed onchain function performUpkeep( bytes calldata performData ) external { // Decode the performData bytes passed in by CL Automation. // This contains the data returned by your implementation in checkCallback(). (bytes[] memory signedReports, bytes memory extraData) = abi.decode(performData, (bytes[], bytes)); bytes memory unverifiedReport = signedReports[0]; (, /* bytes32[3] reportContextData */ bytes memory reportData) = abi.decode(unverifiedReport, (bytes32[3], bytes)); // Extract report version from reportData uint16 reportVersion = (uint16(uint8(reportData[0])) << 8) | uint16(uint8(reportData[1])); // Validate report version if (reportVersion != 3 && reportVersion != 4) { revert InvalidReportVersion(uint8(reportVersion)); } // Verify the report. Data Streams uses subscription billing, so no fee metadata is required. bytes memory verifiedReportData = verifier.verify(unverifiedReport, bytes(\\\\\\\"\\\\\\\")); // Decode verified report data into the appropriate Report struct based on reportVersion if (reportVersion == 3) { // v3 report schema ReportV3 memory verifiedReport = abi.decode(verifiedReportData, (ReportV3)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } else if (reportVersion == 4) { // v4 report schema ReportV4 memory verifiedReport = abi.decode(verifiedReportData, (ReportV4)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } } }\\\"};duplicate=1\",\"expected\":\"// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ILogAutomation, Log} from \\\"@chainlink/contracts/src/v0.8/automation/interfaces/ILogAutomation.sol\\\"; import { StreamsLookupCompatibleInterface } from \\\"@chainlink/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol\\\"; import {LinkTokenInterface} from \\\"@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.sol\\\"; /** * THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE FOR DEMONSTRATION PURPOSES. * DO NOT USE THIS CODE IN PRODUCTION. */ /** * @dev Defines the parameters required to register a new upkeep. * @param name The name of the upkeep to be registered. * @param encryptedEmail An encrypted email address associated with the upkeep (optional). * @param upkeepContract The address of the contract that requires upkeep. * @param gasLimit The maximum amount of gas to be used for the upkeep execution. * @param adminAddress The address that will have administrative privileges over the upkeep. * @param triggerType An identifier for the type of trigger that initiates the upkeep (`1` for event-based). * @param checkData Data passed to the checkUpkeep function to simulate conditions for triggering upkeep. * @param triggerConfig Configuration parameters specific to the trigger type. * @param offchainConfig Off-chain configuration data, if applicable. * @param amount The amount of LINK tokens to fund the upkeep registration. */ struct RegistrationParams { string name; bytes encryptedEmail; address upkeepContract; uint32 gasLimit; address adminAddress; uint8 triggerType; bytes checkData; bytes triggerConfig; bytes offchainConfig; uint96 amount; } /** * @dev Interface for the Automation Registrar contract. */ interface AutomationRegistrarInterface { /** * @dev Registers a new upkeep contract with Chainlink Automation. * @param requestParams The parameters required for the upkeep registration, encapsulated in `RegistrationParams`. * @return upkeepID The unique identifier for the registered upkeep, used for future interactions. */ function registerUpkeep( RegistrationParams calldata requestParams ) external returns (uint256); } // Custom interface for Data Streams: IVerifierProxy interface IVerifierProxy { function verify( bytes calldata payload, bytes calldata parameterPayload ) external payable returns (bytes memory verifierResponse); } contract StreamsUpkeepRegistrar is ILogAutomation, StreamsLookupCompatibleInterface { error InvalidReportVersion(uint16 version); // Thrown when an unsupported report version is provided to verifyReport. LinkTokenInterface public immutable i_link; AutomationRegistrarInterface public immutable i_registrar; /** * @dev Represents a data report from a stream for v3 schema (crypto and DEX State Price streams). * The `price`, `bid`, and `ask` values are carried to either 8 or 18 decimal places, depending on the stream. * `bid`, and `ask` values are not available for DEX State Price streams. * For more information, see https://docs.chain.link/data-streams/crypto-streams and * https://docs.chain.link/data-streams/reference/report-schema */ struct ReportV3 { bytes32 feedId; // The feed ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median price (8 or 18 decimals). int192 bid; // Simulated price impact of a buy order up to the X% depth of liquidity utilisation (8 or 18 decimals). // Note: not available for DEX State Price streams. int192 ask; // Simulated price impact of a sell order up to the X% depth of liquidity utilisation (8 or 18 // decimals). Note: not available for DEX State Price streams. } /** * @dev Represents a data report from a Data Streams feed for v4 schema (RWA feeds). * The `price` value is carried to either 8 or 18 decimal places, depending on the feed. * The `marketStatus` indicates whether the market is currently open. Possible values: `0` (`Unknown`), `1` * (`Closed`), `2` (`Open`). * For more information, see https://docs.chain.link/data-streams/rwa-streams and * https://docs.chain.link/data-streams/reference/report-schema-v4 */ struct ReportV4 { bytes32 feedId; // The feed ID the report has data for. uint32 validFromTimestamp; // Earliest timestamp for which price is applicable. uint32 observationsTimestamp; // Latest timestamp for which price is applicable. uint192 nativeFee; // Legacy onchain verification fee field. uint192 linkFee; // Legacy onchain verification fee field. Not used for subscription billing. uint32 expiresAt; // Latest timestamp where the report can be verified onchain. int192 price; // DON consensus median benchmark price (8 or 18 decimals). uint32 marketStatus; // The DON's consensus on whether the market is currently open. } struct Quote { address quoteAddress; } event PriceUpdate(int192 indexed price); IVerifierProxy public verifier; string public constant DATASTREAMS_FEEDLABEL = \\\"feedIDs\\\"; string public constant DATASTREAMS_QUERYLABEL = \\\"timestamp\\\"; int192 public lastDecodedPrice; uint256 s_upkeepID; bytes public s_LogTriggerConfig; // Find a complete list of IDs at https://docs.chain.link/data-streams/crypto-streams string[] public feedIds; constructor( address _verifier, LinkTokenInterface link, AutomationRegistrarInterface registrar, string[] memory _feedIds ) { verifier = IVerifierProxy(_verifier); i_link = link; i_registrar = registrar; feedIds = _feedIds; } /** * @notice Registers a new upkeep using the specified parameters and predicts its ID. * @dev This function first approves the transfer of LINK tokens specified in `params.amount` to the Automation * Registrar contract. * It then registers the upkeep and stores its ID if registration is successful. * Reverts if auto-approve is disabled or registration fails. * @param params The registration parameters, including name, upkeep contract address, gas limit, admin address, * trigger type, and funding amount. */ function registerAndPredictID( RegistrationParams memory params ) public { i_link.approve(address(i_registrar), params.amount); uint256 upkeepID = i_registrar.registerUpkeep(params); if (upkeepID != 0) { s_upkeepID = upkeepID; // DEV - Use the upkeepID however you see fit } else { revert(\\\"auto-approve disabled\\\"); } } /** * @notice this is a new, optional function in streams lookup. It is meant to surface streams lookup errors. * @return upkeepNeeded boolean to indicate whether the keeper should call performUpkeep or not. * @return performData bytes that the keeper should call performUpkeep with, if * upkeep is needed. If you would like to encode data to decode later, try `abi.encode`. */ function checkErrorHandler( uint256, /*errCode*/ bytes memory /*extraData*/ ) external pure returns (bool upkeepNeeded, bytes memory performData) { return (true, \\\"0\\\"); // Hardcoded to always perform upkeep. // Read the StreamsLookup error handler guide for more information. // https://docs.chain.link/chainlink-automation/guides/streams-lookup-error-handler } // This function uses revert to convey call information. // See https://eips.ethereum.org/EIPS/eip-3668#rationale for details. function checkLog( Log calldata log, bytes memory ) external returns (bool upkeepNeeded, bytes memory performData) { revert StreamsLookup(DATASTREAMS_FEEDLABEL, feedIds, DATASTREAMS_QUERYLABEL, log.timestamp, \\\"\\\"); } // The Data Streams report bytes is passed here. // extraData is context data from feed lookup process. // Your contract may include logic to further process this data. // This method is intended only to be simulated offchain by Automation. // The data returned will then be passed by Automation into performUpkeep function checkCallback( bytes[] calldata values, bytes calldata extraData ) external pure returns (bool, bytes memory) { return (true, abi.encode(values, extraData)); } // function will be performed onchain function performUpkeep( bytes calldata performData ) external { // Decode the performData bytes passed in by CL Automation. // This contains the data returned by your implementation in checkCallback(). (bytes[] memory signedReports, bytes memory extraData) = abi.decode(performData, (bytes[], bytes)); bytes memory unverifiedReport = signedReports[0]; (, /* bytes32[3] reportContextData */ bytes memory reportData) = abi.decode(unverifiedReport, (bytes32[3], bytes)); // Extract report version from reportData uint16 reportVersion = (uint16(uint8(reportData[0])) << 8) | uint16(uint8(reportData[1])); // Validate report version if (reportVersion != 3 && reportVersion != 4) { revert InvalidReportVersion(uint8(reportVersion)); } // Verify the report. Data Streams uses subscription billing, so no fee metadata is required. bytes memory verifiedReportData = verifier.verify(unverifiedReport, bytes(\\\"\\\")); // Decode verified report data into the appropriate Report struct based on reportVersion if (reportVersion == 3) { // v3 report schema ReportV3 memory verifiedReport = abi.decode(verifiedReportData, (ReportV3)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } else if (reportVersion == 4) { // v4 report schema ReportV4 memory verifiedReport = abi.decode(verifiedReportData, (ReportV4)); // Store the price from the report lastDecodedPrice = verifiedReport.price; } } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"git clone https://github.com/smartcontractkit/smart-contract-examples.git cd smart-contract-examples/data-streams/getting-started/hardhat\\\"};duplicate=1\",\"expected\":\"git clone https://github.com/smartcontractkit/smart-contract-examples.git cd smart-contract-examples/data-streams/getting-started/hardhat\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npm install\\\"};duplicate=1\",\"expected\":\"npm install\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx env-enc set-pw\\\"};duplicate=1\",\"expected\":\"npx env-enc set-pw\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx env-enc set\\\"};duplicate=1\",\"expected\":\"npx env-enc set\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx hardhat deployAll --network arbitrumSepolia\\\"};duplicate=1\",\"expected\":\"npx hardhat deployAll --network arbitrumSepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx hardhat emitLog --log-emitter --network arbitrumSepolia\\\"};duplicate=1\",\"expected\":\"npx hardhat emitLog --log-emitter --network arbitrumSepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx hardhat getLastRetrievedPrice --streams-upkeep --network arbitrumSepolia\\\"};duplicate=1\",\"expected\":\"npx hardhat getLastRetrievedPrice --streams-upkeep --network arbitrumSepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx hardhat registerAndFundUpkeep --streams-upkeep --log-emitter --network arbitrumSepolia\\\"};duplicate=1\",\"expected\":\"npx hardhat registerAndFundUpkeep --streams-upkeep --log-emitter --network arbitrumSepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npx hardhat transfer-link --recipient --amount 1500000000000000000 --network arbitrumSepolia\\\"};duplicate=1\",\"expected\":\"npx hardhat transfer-link --recipient --amount 1500000000000000000 --network arbitrumSepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"ℹ Deploying StreamsUpkeepRegistrar contract... ✔ StreamsUpkeepRegistrar deployed at: 0x48403478Aa021A9BC30Da0BDE47cbc155CcA8916 ℹ Deploying LogEmitter contract... ✔ LogEmitter deployed at: 0xD721337a827F9D814daEcCc3c7e72300af914BFE ✔ All contracts deployed successfully.\\\"};duplicate=1\",\"expected\":\"ℹ Deploying StreamsUpkeepRegistrar contract... ✔ StreamsUpkeepRegistrar deployed at: 0x48403478Aa021A9BC30Da0BDE47cbc155CcA8916 ℹ Deploying LogEmitter contract... ✔ LogEmitter deployed at: 0xD721337a827F9D814daEcCc3c7e72300af914BFE ✔ All contracts deployed successfully.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"ℹ Starting LINK transfer from to the streams upkeep contract at 0xD721337a827F9D814daEcCc3c7e72300af914BFE ℹ LINK token address: 0xb1D4538B4571d411F07960EF2838Ce337FE1E80E ℹ LINK balance of sender 0x45C90FBb5acC1a5c156a401B56Fea55e69E7669d is 6.5 LINK ✔ 1.5 LINK were sent from 0x45C90FBb5acC1a5c156a401B56Fea55e69E7669d to 0xD721337a827F9D814daEcCc3c7e72300af914BFE. Transaction Hash: 0xf241bf4415ec081325ccd8ec3d54432e424afd16f1c81fa78b291ae9a0c03ce2\\\"};duplicate=1\",\"expected\":\"ℹ Starting LINK transfer from to the streams upkeep contract at 0xD721337a827F9D814daEcCc3c7e72300af914BFE ℹ LINK token address: 0xb1D4538B4571d411F07960EF2838Ce337FE1E80E ℹ LINK balance of sender 0x45C90FBb5acC1a5c156a401B56Fea55e69E7669d is 6.5 LINK ✔ 1.5 LINK were sent from 0x45C90FBb5acC1a5c156a401B56Fea55e69E7669d to 0xD721337a827F9D814daEcCc3c7e72300af914BFE. Transaction Hash: 0xf241bf4415ec081325ccd8ec3d54432e424afd16f1c81fa78b291ae9a0c03ce2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"✔ Last Retrieved Price: 2945878120219995000000\\\"};duplicate=1\",\"expected\":\"✔ Last Retrieved Price: 2945878120219995000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"✔ Log emitted successfully in transaction: 0x236ee95faade12d1b6d497ee2e51ddf957f7d4986ffe51d784b923081ed440ff\\\"};duplicate=1\",\"expected\":\"✔ Log emitted successfully in transaction: 0x236ee95faade12d1b6d497ee2e51ddf957f7d4986ffe51d784b923081ed440ff\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"✔ Upkeep registered and funded with 1 LINK successfully.\\\"};duplicate=1\",\"expected\":\"✔ Upkeep registered and funded with 1 LINK successfully.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Before you begin\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Before you begin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Deploy the upkeep and the log emitter contracts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Deploy the upkeep and the log emitter contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Emit a log\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Emit a log\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Emitting a log, retrieving, and verifying the report\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Emitting a log, retrieving, and verifying the report\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Examine the code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Feed ID types and conversion\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Feed ID types and conversion\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Fund the upkeep contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Fund the upkeep contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Funding the upkeep\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Funding the upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Initializing the contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Initializing the contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Optional: Handle Data Streams fetching errors offchain with checkErrorHandler\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Optional: Handle Data Streams fetching errors offchain with checkErrorHandler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Register and fund the upkeep\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Register and fund the upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Registering the upkeep\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Registering the upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Requirements\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Requirements\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Setup\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Setup\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Tutorial\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"View the retrieved price\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"View the retrieved price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Viewing the retrieved price\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Viewing the retrieved price\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Alchemy\\\",\\\"url\\\":\\\"https://www.alchemy.com/\\\"};duplicate=1\",\"expected\":\"Alchemy -> https://www.alchemy.com/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Arbitrum Sepolia explorer\\\",\\\"url\\\":\\\"https://sepolia.arbiscan.io/\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia explorer -> https://sepolia.arbiscan.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Architecture\\\",\\\"url\\\":\\\"/data-streams/architecture#example-trading-flow-using-streams-trade\\\"};duplicate=1\",\"expected\":\"Architecture -> /data-streams/architecture#example-trading-flow-using-streams-trade\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation Log Trigger\\\",\\\"url\\\":\\\"/chainlink-automation/guides/log-trigger\\\"};duplicate=1\",\"expected\":\"Chainlink Automation Log Trigger -> /chainlink-automation/guides/log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation Supported Networks\\\",\\\"url\\\":\\\"/chainlink-automation/overview/supported-networks\\\"};duplicate=1\",\"expected\":\"Chainlink Automation Supported Networks -> /chainlink-automation/overview/supported-networks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation UI\\\",\\\"url\\\":\\\"https://automation.chain.link/\\\"};duplicate=1\",\"expected\":\"Chainlink Automation UI -> https://automation.chain.link/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Automation UI\\\",\\\"url\\\":\\\"https://automation.chain.link/arbitrum-sepolia\\\"};duplicate=1\",\"expected\":\"Chainlink Automation UI -> https://automation.chain.link/arbitrum-sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Chainlink Token Addresses\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"Chainlink Token Addresses -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Contact us\\\",\\\"url\\\":\\\"https://chainlinkcommunity.typeform.com/datastreams?typeform-source=docs.chain.link#ref_id=docs\\\"};duplicate=1\",\"expected\":\"Contact us -> https://chainlinkcommunity.typeform.com/datastreams?typeform-source=docs.chain.link#ref_id=docs\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Stream Addresses\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"Data Stream Addresses -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Streams Crypto Addresses\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=1\",\"expected\":\"Data Streams Crypto Addresses -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Streams Crypto Addresses\\\",\\\"url\\\":\\\"/data-streams/crypto-streams\\\"};duplicate=2\",\"expected\":\"Data Streams Crypto Addresses -> /data-streams/crypto-streams\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"EIP-3668 rationale\\\",\\\"url\\\":\\\"https://eips.ethereum.org/EIPS/eip-3668#rationale\\\"};duplicate=1\",\"expected\":\"EIP-3668 rationale -> https://eips.ethereum.org/EIPS/eip-3668#rationale\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Export a Private Key\\\",\\\"url\\\":\\\"https://support.metamask.io/configure/accounts/how-to-export-an-accounts-private-key\\\"};duplicate=1\",\"expected\":\"Export a Private Key -> https://support.metamask.io/configure/accounts/how-to-export-an-accounts-private-key\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Fetch and decode reports via a REST API\\\",\\\"url\\\":\\\"/data-streams/tutorials/go-sdk-fetch\\\"};duplicate=1\",\"expected\":\"Fetch and decode reports via a REST API -> /data-streams/tutorials/go-sdk-fetch\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Git website\\\",\\\"url\\\":\\\"https://git-scm.com/book/en/v2/Getting-Started-Installing-Git\\\"};duplicate=1\",\"expected\":\"Git website -> https://git-scm.com/book/en/v2/Getting-Started-Installing-Git\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"HTTP requests\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-http-client\\\"};duplicate=1\",\"expected\":\"HTTP requests -> /cre/guides/workflow/using-http-client\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Hardhat Documentation\\\",\\\"url\\\":\\\"https://hardhat.org/hardhat-runner/docs/getting-started\\\"};duplicate=1\",\"expected\":\"Hardhat Documentation -> https://hardhat.org/hardhat-runner/docs/getting-started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Hardhat\\\",\\\"url\\\":\\\"https://hardhat.org/\\\"};duplicate=1\",\"expected\":\"Hardhat -> https://hardhat.org/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Infura\\\",\\\"url\\\":\\\"https://www.infura.io/\\\"};duplicate=1\",\"expected\":\"Infura -> https://www.infura.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Install the latest release of Node.js 20\\\",\\\"url\\\":\\\"https://nodejs.org/en/download/\\\"};duplicate=1\",\"expected\":\"Install the latest release of Node.js 20 -> https://nodejs.org/en/download/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Report Schemas\\\",\\\"url\\\":\\\"/data-streams/reference/report-schema-v3\\\"};duplicate=1\",\"expected\":\"Report Schemas -> /data-streams/reference/report-schema-v3\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Stream and decode reports via WebSocket\\\",\\\"url\\\":\\\"/data-streams/tutorials/go-sdk-stream\\\"};duplicate=1\",\"expected\":\"Stream and decode reports via WebSocket -> /data-streams/tutorials/go-sdk-stream\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Streams Trade\\\",\\\"url\\\":\\\"/data-streams/streams-trade\\\"};duplicate=1\",\"expected\":\"Streams Trade -> /data-streams/streams-trade\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StreamsLookup error\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol#L6\\\"};duplicate=1\",\"expected\":\"StreamsLookup error -> https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/automation/interfaces/StreamsLookupCompatibleInterface.sol#L6\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"emitLog task\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/data-streams/getting-started/hardhat/tasks/emitLog.js\\\"};duplicate=1\",\"expected\":\"emitLog task -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/data-streams/getting-started/hardhat/tasks/emitLog.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/arbitrum-sepolia\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/arbitrum-sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"getLastRetrievedPrice\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/data-streams/getting-started/hardhat/tasks/getLastRetrievedPrice.js\\\"};duplicate=1\",\"expected\":\"getLastRetrievedPrice -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/data-streams/getting-started/hardhat/tasks/getLastRetrievedPrice.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"nvm\\\",\\\"url\\\":\\\"https://github.com/nvm-sh/nvm/blob/master/README.md\\\"};duplicate=1\",\"expected\":\"nvm -> https://github.com/nvm-sh/nvm/blob/master/README.md\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain event triggers\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-triggers/evm-log-trigger\\\"};duplicate=1\",\"expected\":\"onchain event triggers -> /cre/guides/workflow/using-triggers/evm-log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain execution\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-write/overview\\\"};duplicate=1\",\"expected\":\"onchain execution -> /cre/guides/workflow/using-evm-client/onchain-write/overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"performUpkeep function\\\",\\\"url\\\":\\\"/chainlink-automation/reference/automation-interfaces#performupkeep-function-for-log-triggers\\\"};duplicate=1\",\"expected\":\"performUpkeep function -> /chainlink-automation/reference/automation-interfaces#performupkeep-function-for-log-triggers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"registerAndFundLogUpkeep\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples/blob/main/data-streams/getting-started/hardhat/tasks/registerAndFundLogUpkeep.js\\\"};duplicate=1\",\"expected\":\"registerAndFundLogUpkeep -> https://github.com/smartcontractkit/smart-contract-examples/blob/main/data-streams/getting-started/hardhat/tasks/registerAndFundLogUpkeep.js\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"repository\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/smart-contract-examples\\\"};duplicate=1\",\"expected\":\"repository -> https://github.com/smartcontractkit/smart-contract-examples\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"using the StreamsLookup error handler\\\",\\\"url\\\":\\\"/chainlink-automation/guides/streams-lookup-error-handler\\\"};duplicate=1\",\"expected\":\"using the StreamsLookup error handler -> /chainlink-automation/guides/streams-lookup-error-handler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"workflows\\\",\\\"url\\\":\\\"/cre/key-terms#workflow\\\"};duplicate=1\",\"expected\":\"workflows -> /cre/key-terms#workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Optionally, you can use\\\"};duplicate=1\",\"expected\":\". Optionally, you can use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". To ensure you are running the correct version in a terminal, type\\\"};duplicate=1\",\"expected\":\". To ensure you are running the correct version in a terminal, type\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ARBITRUM_SEPOLIA_RPC_URL: The Remote Procedure Call (RPC) URL for the Arbitrum Sepolia network. You can obtain one by creating an account on\\\"};duplicate=1\",\"expected\":\"ARBITRUM_SEPOLIA_RPC_URL: The Remote Procedure Call (RPC) URL for the Arbitrum Sepolia network. You can obtain one by creating an account on\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the transaction is complete, the log is emitted, and the upkeep is triggered.\\\"};duplicate=1\",\"expected\":\"After the transaction is complete, the log is emitted, and the upkeep is triggered.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Alternatively, you can view the price emitted in the logs for your upkeep transaction.\\\"};duplicate=1\",\"expected\":\"Alternatively, you can view the price emitted in the logs for your upkeep transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Disclaimer\\\"};duplicate=1\",\"expected\":\"CAUTION: Disclaimer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE natively includes\\\"};duplicate=1\",\"expected\":\"CRE natively includes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, returns the data in a callback (checkCallback), and runs the performUpkeep function on your registered upkeep contract.\\\"};duplicate=1\",\"expected\":\"Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, returns the data in a callback (checkCallback), and runs the performUpkeep function on your registered upkeep contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink Data Streams uses different data types for feed IDs at different stages of the process:\\\"};duplicate=1\",\"expected\":\"Chainlink Data Streams uses different data types for feed IDs at different stages of the process:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clone the\\\"};duplicate=1\",\"expected\":\"Clone the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Data Streams uses subscription-based billing, so you do not need to fund the StreamsUpkeepRegistrar contract with LINK to pay onchain report verification fees.\\\"};duplicate=1\",\"expected\":\"Data Streams uses subscription-based billing, so you do not need to fund the StreamsUpkeepRegistrar contract with LINK to pay onchain report verification fees.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy an upkeep contract that is enabled to retrieve data from Data Streams. For this example, you will read from the ETH/USD stream with ID 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 on Arbitrum Sepolia. See the\\\"};duplicate=1\",\"expected\":\"Deploy an upkeep contract that is enabled to retrieve data from Data Streams. For this example, you will read from the ETH/USD stream with ID 0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782 on Arbitrum Sepolia. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execute the following command to deploy the Chainlink Automation upkeep contract and the Log Emitter contract to the Arbitrum Sepolia network.\\\"};duplicate=1\",\"expected\":\"Execute the following command to deploy the Chainlink Automation upkeep contract and the Log Emitter contract to the Arbitrum Sepolia network.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=1\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=2\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=3\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=4\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=5\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Hardhat task retrieves the last price updated by the performUpkeep function in the lastDecodedPrice state variable of the StreamsUpkeepRegistrar contract.\\\"};duplicate=1\",\"expected\":\"Hardhat task retrieves the last price updated by the performUpkeep function in the lastDecodedPrice state variable of the StreamsUpkeepRegistrar contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If your application needs to compare the feed ID(s) sent in the StreamsLookup with those received in the report(s), you must convert between string and bytes32 types.\\\"};duplicate=1\",\"expected\":\"If your application needs to compare the feed ID(s) sent in the StreamsLookup with those received in the report(s), you must convert between string and bytes32 types.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this example, the checkErrorHandler is set to always return true for upkeepNeeded. This implies that the upkeep is always triggered, even if the report fetching fails. You can modify the checkErrorHandler function to handle errors offchain in a way that works for your specific use case. Read more about\\\"};duplicate=1\",\"expected\":\"In this example, the checkErrorHandler is set to always return true for upkeepNeeded. This implies that the upkeep is always triggered, even if the report fetching fails. You can modify the checkErrorHandler function to handle errors offchain in a way that works for your specific use case. Read more about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this example, the performUpkeep function also stores the price from the report in the lastDecodedPrice state variable and emits a PriceUpdate log message with the price.\\\"};duplicate=1\",\"expected\":\"In this example, the performUpkeep function also stores the price from the report in the lastDecodedPrice state variable and emits a PriceUpdate log message with the price.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this example, the upkeep contract pays for onchain verification of reports from Data Streams. The Automation subscription does not cover the cost. Transfer 1.5 testnet LINK to the upkeep contract address you saved earlier. You can retrieve unused LINK later.\\\"};duplicate=1\",\"expected\":\"In this example, the upkeep contract pays for onchain verification of reports from Data Streams. The Automation subscription does not cover the cost. Transfer 1.5 testnet LINK to the upkeep contract address you saved earlier. You can retrieve unused LINK later.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Install the dependencies:\\\"};duplicate=1\",\"expected\":\"Install the dependencies:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Nodejs and npm:\\\"};duplicate=1\",\"expected\":\"Nodejs and npm:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Note: To learn how to use Data Streams with the REST API or WebSocket, see the\\\"};duplicate=1\",\"expected\":\"Note: To learn how to use Data Streams with the REST API or WebSocket, see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Now, you can use your emitter contract to emit a log and initiate the upkeep, which retrieves data for the specified stream ID.\\\"};duplicate=1\",\"expected\":\"Now, you can use your emitter contract to emit a log and initiate the upkeep, which retrieves data for the specified stream ID.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"PRIVATE_KEY: The private key for your testnet wallet that will deploy and interact with the contracts. If you use MetaMask, follow the instructions to\\\"};duplicate=1\",\"expected\":\"PRIVATE_KEY: The private key for your testnet wallet that will deploy and interact with the contracts. If you use MetaMask, follow the instructions to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Programmatically register and fund a new Log Trigger upkeep with 1 LINK:\\\"};duplicate=1\",\"expected\":\"Programmatically register and fund a new Log Trigger upkeep with 1 LINK:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with the address of your LogEmitter contract.\\\"};duplicate=1\",\"expected\":\"Replace with the address of your LogEmitter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace and with the addresses of your StreamsUpkeepRegistrar and LogEmitter contracts.\\\"};duplicate=1\",\"expected\":\"Replace and with the addresses of your StreamsUpkeepRegistrar and LogEmitter contracts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with the address of the StreamsUpkeepRegistrar contract you saved earlier.\\\"};duplicate=1\",\"expected\":\"Replace with the address of the StreamsUpkeepRegistrar contract you saved earlier.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Replace with the address of your StreamsUpkeepRegistrar contract.\\\"};duplicate=1\",\"expected\":\"Replace with the address of your StreamsUpkeepRegistrar contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Save the deployed contract addresses for both contracts. You will use these addresses later.\\\"};duplicate=1\",\"expected\":\"Save the deployed contract addresses for both contracts. You will use these addresses later.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set an encryption password for your environment variables. This password needs to be set each time you create or restart a terminal session.\\\"};duplicate=1\",\"expected\":\"Set an encryption password for your environment variables. This password needs to be set each time you create or restart a terminal session.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Set the required environment variables using the following command:\\\"};duplicate=1\",\"expected\":\"Set the required environment variables using the following command:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Testnet funds: This guide requires testnet ETH and LINK on Arbitrum Sepolia. Both are available at\\\"};duplicate=1\",\"expected\":\"Testnet funds: This guide requires testnet ETH and LINK on Arbitrum Sepolia. Both are available at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK token address. This address is used to register and fund your upkeep. You can find the LINK token address on the\\\"};duplicate=1\",\"expected\":\"The LINK token address. This address is used to register and fund your upkeep. You can find the LINK token address on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The answer on the ETH/USD stream uses 18 decimal places, so an answer of 2945878120219995000000 indicates an ETH/USD price of 2,945.878120219995. Some streams may use a different number of decimal places for answers. See the\\\"};duplicate=1\",\"expected\":\"The answer on the ETH/USD stream uses 18 decimal places, so an answer of 2945878120219995000000 indicates an ETH/USD price of 2,945.878120219995. Some streams may use a different number of decimal places for answers. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The code example uses revert with StreamsLookup to convey call information about what streams to retrieve. See the\\\"};duplicate=1\",\"expected\":\"The code example uses revert with StreamsLookup to convey call information about what streams to retrieve. See the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decoded reports within the contract use bytes32 types for feed IDs (see the\\\"};duplicate=1\",\"expected\":\"The decoded reports within the contract use bytes32 types for feed IDs (see the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The emitted log triggers the Chainlink Automation upkeep.\\\"};duplicate=1\",\"expected\":\"The emitted log triggers the Chainlink Automation upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The example code you deployed has all the interfaces and functions required to work with Chainlink Automation as an upkeep contract. It follows a similar flow to the trading flow in the\\\"};duplicate=1\",\"expected\":\"The example code you deployed has all the interfaces and functions required to work with Chainlink Automation as an upkeep contract. It follows a similar flow to the trading flow in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The performUpkeep function calls the verify function on the verifier contract to verify the report onchain.\\\"};duplicate=1\",\"expected\":\"The performUpkeep function calls the verify function on the verifier contract to verify the report onchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The registerAndFundLogUpkeep Hardhat task sets up the necessary parameters for upkeep registration, including trigger configuration for a Log Emitter contract, and submits the registration request to the registrar contract via the registerAndPredictID function.\\\"};duplicate=1\",\"expected\":\"The registerAndFundLogUpkeep Hardhat task sets up the necessary parameters for upkeep registration, including trigger configuration for a Log Emitter contract, and submits the registration request to the registrar contract via the registerAndPredictID function.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The registrar's contract address. This address is used to register your upkeep. You can find the registrar contract addresses on the\\\"};duplicate=1\",\"expected\":\"The registrar's contract address. This address is used to register your upkeep. You can find the registrar contract addresses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The retrieved price is stored in the lastDecodedPrice contract variable and emitted in the logs. To see the price retrieved by the StreamsUpkeepRegistrar contract:\\\"};duplicate=1\",\"expected\":\"The retrieved price is stored in the lastDecodedPrice contract variable and emitted in the logs. To see the price retrieved by the StreamsUpkeepRegistrar contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The verifier proxy address that you can find on the\\\"};duplicate=1\",\"expected\":\"The verifier proxy address that you can find on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The verify function to verify the report onchain.\\\"};duplicate=1\",\"expected\":\"The verify function to verify the report onchain.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The\\\"};duplicate=1\",\"expected\":\"The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The\\\"};duplicate=2\",\"expected\":\"The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example uses the\\\"};duplicate=1\",\"expected\":\"This example uses the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This guide represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\\\\\"AS IS\\\\\\\" and \\\\\\\"AS AVAILABLE\\\\\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\\\"};duplicate=1\",\"expected\":\"This guide represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\"AS IS\\\" and \\\"AS AVAILABLE\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This guide shows you how to read data from a Data Streams stream, verify the answer onchain, and store it.\\\"};duplicate=1\",\"expected\":\"This guide shows you how to read data from a Data Streams stream, verify the answer onchain, and store it.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This guide uses the\\\"};duplicate=1\",\"expected\":\"This guide uses the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When Automation detects the triggering event, it runs the checkLog function of your upkeep contract, which includes a StreamsLookup revert custom error. The StreamsLookup revert enables your upkeep to fetch a report from the Data Streams Aggregation Network. If the report is fetched successfully, the checkCallback function is evaluated offchain. Otherwise, the checkErrorHandler function is evaluated offchain to determine what Automation should do next.\\\"};duplicate=1\",\"expected\":\"When Automation detects the triggering event, it runs the checkLog function of your upkeep contract, which includes a StreamsLookup revert custom error. The StreamsLookup revert enables your upkeep to fetch a report from the Data Streams Aggregation Network. If the report is fetched successfully, the checkCallback function is evaluated offchain. Otherwise, the checkErrorHandler function is evaluated offchain to determine what Automation should do next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When you deploy the contract, you define:\\\"};duplicate=1\",\"expected\":\"When you deploy the contract, you define:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can find the upkeep transaction hash at\\\"};duplicate=1\",\"expected\":\"You can find the upkeep transaction hash at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can use the\\\"};duplicate=1\",\"expected\":\"You can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can use the\\\"};duplicate=2\",\"expected\":\"You can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You need to register your log-triggered upkeep with the Chainlink Automation registrar. You can use the\\\"};duplicate=1\",\"expected\":\"You need to register your log-triggered upkeep with the Chainlink Automation registrar. You can use the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You still need to fund your Chainlink Automation upkeep so Automation can perform the upkeep.\\\"};duplicate=1\",\"expected\":\"You still need to fund your Chainlink Automation upkeep so Automation can perform the upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and setting up an Arbitrum Sepolia project.\\\"};duplicate=1\",\"expected\":\"and setting up an Arbitrum Sepolia project.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and view the transaction logs in the\\\"};duplicate=1\",\"expected\":\"and view the transaction logs in the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as first-class capabilities in composable, code-first\\\"};duplicate=1\",\"expected\":\"as first-class capabilities in composable, code-first\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"development environment to deploy and interact with the contracts. To learn more about Hardhat, read the\\\"};duplicate=1\",\"expected\":\"development environment to deploy and interact with the contracts. To learn more about Hardhat, read the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"documentation but uses a basic log emitter to simulate the client contract that would initiate a StreamsLookup. After the contract receives and verifies the report, performUpkeep stores the price from the report in the lastDecodedPrice and emits a PriceUpdate log message with the price. You could modify this to use the data in a way that works for your specific use case and application.\\\"};duplicate=1\",\"expected\":\"documentation but uses a basic log emitter to simulate the client contract that would initiate a StreamsLookup. After the contract receives and verifies the report, performUpkeep stores the price from the report in the lastDecodedPrice and emits a PriceUpdate log message with the price. You could modify this to use the data in a way that works for your specific use case and application.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for more information about how to use revert in this way.\\\"};duplicate=1\",\"expected\":\"for more information about how to use revert in this way.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide or the\\\"};duplicate=1\",\"expected\":\"guide or the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide.\\\"};duplicate=1\",\"expected\":\"guide.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if necessary.\\\"};duplicate=1\",\"expected\":\"if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"implementation, with a\\\"};duplicate=1\",\"expected\":\"implementation, with a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"node -v\\\"};duplicate=1\",\"expected\":\"node -v\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"nvm use 20\\\"};duplicate=1\",\"expected\":\"nvm use 20\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on your registered upkeep contract. The performUpkeep function calls the verify function on the verifier contract.\\\"};duplicate=1\",\"expected\":\"on your registered upkeep contract. The performUpkeep function calls the verify function on the verifier contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"or\\\"};duplicate=1\",\"expected\":\"or\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page for a complete list of available crypto assets, IDs, and verifier proxy addresses.\\\"};duplicate=1\",\"expected\":\"page for a complete list of available crypto assets, IDs, and verifier proxy addresses.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page for more information.\\\"};duplicate=1\",\"expected\":\"page for more information.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page. The IVerifierProxy interface provides the following functions:\\\"};duplicate=1\",\"expected\":\"page. The IVerifierProxy interface provides the following functions:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=1\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=2\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"reference).\\\"};duplicate=1\",\"expected\":\"reference).\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"requires feed IDs to be provided as an array of string,\\\"};duplicate=1\",\"expected\":\"requires feed IDs to be provided as an array of string,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"task to programmatically register the StreamsUpkeepRegistrar and LogEmitter contracts with the Chainlink Automation registrar. The task also funds the upkeep with 1 testnet LINK token.\\\"};duplicate=1\",\"expected\":\"task to programmatically register the StreamsUpkeepRegistrar and LogEmitter contracts with the Chainlink Automation registrar. The task also funds the upkeep with 1 testnet LINK token.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"that contains the Hardhat project setup for this guide. This repository contains the Solidity contracts and the Hardhat configuration files you need to deploy and interact with the contracts.\\\"};duplicate=1\",\"expected\":\"that contains the Hardhat project setup for this guide. This repository contains the Solidity contracts and the Hardhat configuration files you need to deploy and interact with the contracts.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to check for events that require data. For this example, the log trigger comes from a simple emitter contract. Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, return the data in a callback, and run the\\\"};duplicate=1\",\"expected\":\"to check for events that require data. For this example, the log trigger comes from a simple emitter contract. Chainlink Automation then uses StreamsLookup to retrieve a signed report from the Data Streams Aggregation Network, return the data in a callback, and run the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to emit a log from the LogEmitter contract.\\\"};duplicate=1\",\"expected\":\"to emit a log from the LogEmitter contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to request mainnet or testnet access.\\\"};duplicate=1\",\"expected\":\"to request mainnet or testnet access.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to switch between installed Node.js versions with\\\"};duplicate=1\",\"expected\":\"to switch between installed Node.js versions with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to view the registered upkeep and the upkeep's configuration.\\\"};duplicate=1\",\"expected\":\"to view the registered upkeep and the upkeep's configuration.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"written in Go or TypeScript.\\\"};duplicate=1\",\"expected\":\"written in Go or TypeScript.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/getting-started-hardhat\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"/** * @notice Determines the need for upkeep in response to an error from Data Streams. * @param errorCode The error code returned by the Data Streams lookup. * @param extraData Additional context or data related to the error condition. * @return upkeepNeeded Boolean indicating whether upkeep is needed based on the error. * @return performData Data to be used if upkeep is performed, encoded with success state and error context. */ function checkErrorHandler( uint errorCode, bytes calldata extraData ) external returns (bool upkeepNeeded, bytes memory performData) { // Add custom logic to handle errors offchain here bool _upkeepNeeded = true; bool reportSuccess = false; if (errorCode == 808400) { // Handle bad request errors code offchain. // In this example, no upkeep needed for bad request errors. _upkeepNeeded = false; } else { // Handle other errors as needed. } return (_upkeepNeeded, abi.encode(reportSuccess, abi.encode(errorCode, extraData))); }\\\"};duplicate=1\",\"expected\":\"/** * @notice Determines the need for upkeep in response to an error from Data Streams. * @param errorCode The error code returned by the Data Streams lookup. * @param extraData Additional context or data related to the error condition. * @return upkeepNeeded Boolean indicating whether upkeep is needed based on the error. * @return performData Data to be used if upkeep is performed, encoded with success state and error context. */ function checkErrorHandler( uint errorCode, bytes calldata extraData ) external returns (bool upkeepNeeded, bytes memory performData) { // Add custom logic to handle errors offchain here bool _upkeepNeeded = true; bool reportSuccess = false; if (errorCode == 808400) { // Handle bad request errors code offchain. // In this example, no upkeep needed for bad request errors. _upkeepNeeded = false; } else { // Handle other errors as needed. } return (_upkeepNeeded, abi.encode(reportSuccess, abi.encode(errorCode, extraData))); }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"// function will be performed on-chain function performUpkeep(bytes calldata performData) external { // Decode incoming performData (bool reportSuccess, bytes memory payload) = abi.decode(performData, (bool, bytes)); if (reportSuccess) { // Decode the performData bytes passed in by CL Automation. // This contains the data returned by your implementation in checkCallback(). (bytes[] memory signedReports, bytes memory extraData) = abi.decode(payload, (bytes[], bytes)); // Logic to verify and decode report // ... } else { // Handle error condition (uint errorCode, bytes memory extraData) = abi.decode(payload, (uint, bytes)); // Custom logic to handle error codes } }\\\"};duplicate=1\",\"expected\":\"// function will be performed on-chain function performUpkeep(bytes calldata performData) external { // Decode incoming performData (bool reportSuccess, bytes memory payload) = abi.decode(performData, (bool, bytes)); if (reportSuccess) { // Decode the performData bytes passed in by CL Automation. // This contains the data returned by your implementation in checkCallback(). (bytes[] memory signedReports, bytes memory extraData) = abi.decode(payload, (bytes[], bytes)); // Logic to verify and decode report // ... } else { // Handle error condition (uint errorCode, bytes memory extraData) = abi.decode(payload, (uint, bytes)); // Custom logic to handle error codes } }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Error codes\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Error codes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Error handler\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Error handler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Example code\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Example code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Testing checkErrorHandler\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Testing checkErrorHandler\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"HTTP requests\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-http-client\\\"};duplicate=1\",\"expected\":\"HTTP requests -> /cre/guides/workflow/using-http-client\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StreamsLookup revert\\\",\\\"url\\\":\\\"/chainlink-automation/reference/automation-interfaces#streamslookup-revert\\\"};duplicate=1\",\"expected\":\"StreamsLookup revert -> /chainlink-automation/reference/automation-interfaces#streamslookup-revert\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"StreamsLookup revert\\\",\\\"url\\\":\\\"/chainlink-automation/reference/automation-interfaces#streamslookup-revert\\\"};duplicate=2\",\"expected\":\"StreamsLookup revert -> /chainlink-automation/reference/automation-interfaces#streamslookup-revert\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"checkCallback\\\",\\\"url\\\":\\\"/chainlink-automation/reference/automation-interfaces#checkcallback-function\\\"};duplicate=1\",\"expected\":\"checkCallback -> /chainlink-automation/reference/automation-interfaces#checkcallback-function\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"error codes\\\",\\\"url\\\":\\\"#error-codes\\\"};duplicate=1\",\"expected\":\"error codes -> #error-codes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"example code\\\",\\\"url\\\":\\\"#example-code\\\"};duplicate=1\",\"expected\":\"example code -> #example-code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/documentation/blob/main/public/samples/DataStreams/StreamsUpkeepWithErrorHandler.sol\\\"};duplicate=1\",\"expected\":\"here -> https://github.com/smartcontractkit/documentation/blob/main/public/samples/DataStreams/StreamsUpkeepWithErrorHandler.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain event triggers\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-triggers/evm-log-trigger\\\"};duplicate=1\",\"expected\":\"onchain event triggers -> /cre/guides/workflow/using-triggers/evm-log-trigger\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"onchain execution\\\",\\\"url\\\":\\\"/cre/guides/workflow/using-evm-client/onchain-write/overview\\\"};duplicate=1\",\"expected\":\"onchain execution -> /cre/guides/workflow/using-evm-client/onchain-write/overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"risk mitigation processes\\\",\\\"url\\\":\\\"/data-feeds/selecting-data-feeds#risk-mitigation\\\"};duplicate=1\",\"expected\":\"risk mitigation processes -> /data-feeds/selecting-data-feeds#risk-mitigation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"workflows\\\",\\\"url\\\":\\\"/cre/key-terms#workflow\\\"};duplicate=1\",\"expected\":\"workflows -> /cre/key-terms#workflow\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Error handler flow diagram)\\\"};duplicate=1\",\"expected\":\"(Image: Error handler flow diagram)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", and\\\"};duplicate=1\",\"expected\":\", and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\",\\\"};duplicate=1\",\"expected\":\",\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". For example, you could decide to ignore any codes related to bad requests or incorrect input, without running performUpkeep onchain:\\\"};duplicate=1\",\"expected\":\". For example, you could decide to ignore any codes related to bad requests or incorrect input, without running performUpkeep onchain:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"808206\\\"};duplicate=1\",\"expected\":\"808206\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"8085XX (e.g 808500)\\\"};duplicate=1\",\"expected\":\"8085XX (e.g 808500)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add the checkErrorHandler function in your contract to specify how you want to handle\\\"};duplicate=1\",\"expected\":\"Add the checkErrorHandler function in your contract to specify how you want to handle\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Developer responsibility\\\"};duplicate=1\",\"expected\":\"CAUTION: Developer responsibility\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CRE natively includes\\\"};duplicate=1\",\"expected\":\"CRE natively includes\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contact us\\\"};duplicate=1\",\"expected\":\"Contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Define custom logic for the alternative path within performUpkeep, to handle any error codes you did not intercept offchain in checkErrorHandler:\\\"};duplicate=1\",\"expected\":\"Define custom logic for the alternative path within performUpkeep, to handle any error codes you did not intercept offchain in checkErrorHandler:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Developers implementing Chainlink products are solely responsible for maintaining the security and user experience of their applications. Developers must monitor and mitigate any potential application code risks that may, among other things, result in unanticipated application behavior, including by instituting requisite\\\"};duplicate=1\",\"expected\":\"Developers implementing Chainlink products are solely responsible for maintaining the security and user experience of their applications. Developers must monitor and mitigate any potential application code risks that may, among other things, result in unanticipated application behavior, including by instituting requisite\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsBadRequest: 808400\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsBadRequest: 808400\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsBadResponse: 808600\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsBadResponse: 808600\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsTimeout: 808601\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsTimeout: 808601\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsUnauthorized: 808401\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsUnauthorized: 808401\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ErrCodeStreamsUnknownError: 808700\\\"};duplicate=1\",\"expected\":\"ErrCodeStreamsUnknownError: 808700\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Error code\\\"};duplicate=1\",\"expected\":\"Error code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Error in reading body of returned response, but service is up\\\"};duplicate=1\",\"expected\":\"Error in reading body of returned response, but service is up\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If the Automation network fails to get the requested reports, an error code is sent to the checkErrorHandler function in your contract. If your contract doesn't have the checkErrorHandler function, nothing will happen. If your contract has the checkErrorHandler function, it is evaluated offchain to determine what to do next. For example, you could intercept or ignore certain errors and decide not to run performUpkeep in those cases, in order to save time and gas. For other errors, you can execute an alternative path within performUpkeep, and the upkeep runs the custom logic you define in your performUpkeep function to handle those errors.\\\"};duplicate=1\",\"expected\":\"If the Automation network fails to get the requested reports, an error code is sent to the checkErrorHandler function in your contract. If your contract doesn't have the checkErrorHandler function, nothing will happen. If your contract has the checkErrorHandler function, it is evaluated offchain to determine what to do next. For example, you could intercept or ignore certain errors and decide not to run performUpkeep in those cases, in order to save time and gas. For other errors, you can execute an alternative path within performUpkeep, and the upkeep runs the custom logic you define in your performUpkeep function to handle those errors.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you need to force errors in StreamsLookup while testing, you can try the following methods:\\\"};duplicate=1\",\"expected\":\"If you need to force errors in StreamsLookup while testing, you can try the following methods:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If your\\\"};duplicate=1\",\"expected\":\"If your\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Issue with encoding http url (bad characters)\\\"};duplicate=1\",\"expected\":\"Issue with encoding http url (bad characters)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Key access issue or incorrect feedID\\\"};duplicate=1\",\"expected\":\"Key access issue or incorrect feedID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log trigger - after retries; Conditional immediately\\\"};duplicate=1\",\"expected\":\"Log trigger - after retries; Conditional immediately\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Log trigger - after retries; Conditional immediately\\\"};duplicate=2\",\"expected\":\"Log trigger - after retries; Conditional immediately\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"N/A\\\"};duplicate=1\",\"expected\":\"N/A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: Talk to an expert\\\"};duplicate=1\",\"expected\":\"NOTE: Talk to an expert\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No error\\\"};duplicate=1\",\"expected\":\"No error\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No error\\\"};duplicate=2\",\"expected\":\"No error\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No response\\\"};duplicate=1\",\"expected\":\"No response\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No valid report is received for 10 seconds\\\"};duplicate=1\",\"expected\":\"No valid report is received for 10 seconds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=1\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=2\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=3\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=4\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"No\\\"};duplicate=5\",\"expected\":\"No\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Not specifying any feedID to force error code 808400 (ErrCodeStreamsBadRequest)\\\"};duplicate=1\",\"expected\":\"Not specifying any feedID to force error code 808400 (ErrCodeStreamsBadRequest)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Possible cause of error\\\"};duplicate=1\",\"expected\":\"Possible cause of error\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Requested m reports but only received n (partial)\\\"};duplicate=1\",\"expected\":\"Requested m reports but only received n (partial)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Retries\\\"};duplicate=1\",\"expected\":\"Retries\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifying a future timestamp to force error code 808206 (where partial content is received) for both single feedID and bulk feedID requests\\\"};duplicate=1\",\"expected\":\"Specifying a future timestamp to force error code 808206 (where partial content is received) for both single feedID and bulk feedID requests\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifying an incorrect feedID to force error code 808401 (ErrCodeStreamsBadRequest)\\\"};duplicate=1\",\"expected\":\"Specifying an incorrect feedID to force error code 808401 (ErrCodeStreamsBadRequest)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specifying old timestamps for reports not available anymore yields either error code 808504 (no response) or 808600 (bad response), depending on which service calls the timeout request\\\"};duplicate=1\",\"expected\":\"Specifying old timestamps for reports not available anymore yields either error code 808504 (no response) or 808600 (bad response), depending on which service calls the timeout request\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Chainlink Automation StreamsLookup error handler provides insight into potential errors or edge cases in StreamsLookup upkeeps. The table below outlines a range of error codes and the behavior associated with the codes. Use the checkErrorHandler function to specify how you want to respond to the error codes. checkErrorHandler is simulated offchain and determines what action for Automation to take onchain in performUpkeep.\\\"};duplicate=1\",\"expected\":\"The Chainlink Automation StreamsLookup error handler provides insight into potential errors or edge cases in StreamsLookup upkeeps. The table below outlines a range of error codes and the behavior associated with the codes. Use the checkErrorHandler function to specify how you want to respond to the error codes. checkErrorHandler is simulated offchain and determines what action for Automation to take onchain in performUpkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example code includes the revert StreamsLookup, checkCallback, checkErrorHandler and performUpkeep functions. The full code example is available\\\"};duplicate=1\",\"expected\":\"This example code includes the revert StreamsLookup, checkCallback, checkErrorHandler and performUpkeep functions. The full code example is available\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Unknown\\\"};duplicate=1\",\"expected\":\"Unknown\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User error, incorrect parameter input\\\"};duplicate=1\",\"expected\":\"User error, incorrect parameter input\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"User requested 0 feeds\\\"};duplicate=1\",\"expected\":\"User requested 0 feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When Automation detects an event, it runs the checkLog function, which includes a\\\"};duplicate=1\",\"expected\":\"When Automation detects an event, it runs the checkLog function, which includes a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"also shows each function outlined in the diagram below:\\\"};duplicate=1\",\"expected\":\"also shows each function outlined in the diagram below:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"as first-class capabilities in composable, code-first\\\"};duplicate=1\",\"expected\":\"as first-class capabilities in composable, code-first\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"checkErrorHandler is simulated offchain. When upkeepNeeded returns true, Automation runs performUpkeep onchain using the performData from checkErrorHandler. If the checkErrorHandler function itself reverts, performUpkeep does not run.\\\"};duplicate=1\",\"expected\":\"checkErrorHandler is simulated offchain. When upkeepNeeded returns true, Automation runs performUpkeep onchain using the performData from checkErrorHandler. If the checkErrorHandler function itself reverts, performUpkeep does not run.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"custom error. The StreamsLookup revert enables your upkeep to fetch a report from Data Streams. If reports are fetched successfully, the\\\"};duplicate=1\",\"expected\":\"custom error. The StreamsLookup revert enables your upkeep to fetch a report from Data Streams. If reports are fetched successfully, the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function is defined incorrectly in your smart contracts, the nodes will not be able to decode it.\\\"};duplicate=1\",\"expected\":\"function is defined incorrectly in your smart contracts, the nodes will not be able to decode it.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"function is evaluated offchain. Otherwise, the checkErrorHandler function is evaluated offchain to determine what Automation should do next. Both of these functions have the same output types (bool upkeepNeeded, bytes memory performData), which Automation uses to run performUpkeep onchain. The\\\"};duplicate=1\",\"expected\":\"function is evaluated offchain. Otherwise, the checkErrorHandler function is evaluated offchain to determine what Automation should do next. Both of these functions have the same output types (bool upkeepNeeded, bytes memory performData), which Automation uses to run performUpkeep onchain. The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"including, but not limited to, data quality checks, circuit breakers, and appropriate contingency logic for their use case.\\\"};duplicate=1\",\"expected\":\"including, but not limited to, data quality checks, circuit breakers, and appropriate contingency logic for their use case.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to talk to an expert about integrating Chainlink Data Streams with your applications.\\\"};duplicate=1\",\"expected\":\"to talk to an expert about integrating Chainlink Data Streams with your applications.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"written in Go or TypeScript.\\\"};duplicate=1\",\"expected\":\"written in Go or TypeScript.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"table\\\",\\\"reason\\\":\\\"Raw HTML element table is not statically projected\\\"};duplicate=1\",\"component\":\"table\",\"reason\":\"Raw HTML element table is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tbody\\\",\\\"reason\\\":\\\"Raw HTML element tbody is not statically projected\\\"};duplicate=1\",\"component\":\"tbody\",\"reason\":\"Raw HTML element tbody is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=1\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=10\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=11\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=12\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=13\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=14\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=15\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=16\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=17\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=18\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=19\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=2\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=20\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=21\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=22\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=23\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=24\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=25\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=26\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=3\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=4\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=5\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=6\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=7\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=8\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"td\\\",\\\"reason\\\":\\\"Raw HTML element td is not statically projected\\\"};duplicate=9\",\"component\":\"td\",\"reason\":\"Raw HTML element td is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=1\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=2\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"th\\\",\\\"reason\\\":\\\"Raw HTML element th is not statically projected\\\"};duplicate=3\",\"component\":\"th\",\"reason\":\"Raw HTML element th is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"thead\\\",\\\"reason\\\":\\\"Raw HTML element thead is not statically projected\\\"};duplicate=1\",\"component\":\"thead\",\"reason\":\"Raw HTML element thead is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=1\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=10\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=11\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=2\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=3\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=4\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=5\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=6\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=7\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=8\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/streams-trade/streams-trade-lookup-error-handler\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"tr\\\",\\\"reason\\\":\\\"Raw HTML element tr is not statically projected\\\"};duplicate=9\",\"component\":\"tr\",\"reason\":\"Raw HTML element tr is not statically projected\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Node.js: Make sure you have Node.js 20.0 or higher. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Node.js: Make sure you have Node.js 20.0 or higher. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TypeScript: Make sure you have TypeScript 5.3 or higher. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"TypeScript: Make sure you have TypeScript 5.3 or higher. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if necessary.\\\"};duplicate=1\",\"expected\":\"if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=2\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and install or update TypeScript by running\\\"};duplicate=1\",\"expected\":\"in your terminal and install or update TypeScript by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"node --version\\\"};duplicate=1\",\"expected\":\"node --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npm install -g typescript\\\"};duplicate=1\",\"expected\":\"npm install -g typescript\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-fetch\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npx tsc --version\\\"};duplicate=1\",\"expected\":\"npx tsc --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Node.js: Make sure you have Node.js 20.0 or higher. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Node.js: Make sure you have Node.js 20.0 or higher. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"TypeScript: Make sure you have TypeScript 5.3 or higher. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"TypeScript: Make sure you have TypeScript 5.3 or higher. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"if necessary.\\\"};duplicate=1\",\"expected\":\"if necessary.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=2\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and install or update TypeScript by running\\\"};duplicate=1\",\"expected\":\"in your terminal and install or update TypeScript by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"node --version\\\"};duplicate=1\",\"expected\":\"node --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npm install -g typescript\\\"};duplicate=1\",\"expected\":\"npm install -g typescript\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"data-streams/tutorials/ts-sdk-stream\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"npx tsc --version\\\"};duplicate=1\",\"expected\":\"npx tsc --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/provider-catalog/streams\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"FeedList\\\",\\\"reason\\\":\\\"Unsupported MDX component FeedList\\\"};duplicate=1\",\"component\":\"FeedList\",\"reason\":\"Unsupported MDX component FeedList\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"2025-06-03T10:25:18-05:00 Raw report data: {\\\\\\\"fullReport\\\\\\\":\\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd69000000000000000000000000000000000000000000000000000000000041438a000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f13dd00000000000000000000000000000000000000000000000000000000683f13dd00000000000000000000000000000000000000000000000000006e0e3915bcc3000000000000000000000000000000000000000000000000004edc1454fb6ef0000000000000000000000000000000000000000000000000000000006866a0dd0000000000000000000000000000000000000000000000000fcaa20569eac064000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000027b160a6824ccce49dc0bd19f636c40de2f3033410c7d1a7400b9a3cb0073d19dde0f87cfd6d9ce03156464a49cacb07136d2e7d717efcf42bc2795fd5c513e4a00000000000000000000000000000000000000000000000000000000000000025e075a9d8a6223ce2b9e524a7b5a563c2924a67b544e6676a751f5374b2a42ee37684b560eb72546f87b7287cefc668705461b7f4ebe4dabd7babe397cc98b89\\\\\\\",\\\\\\\"feedID\\\\\\\":\\\\\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\\\\\",\\\\\\\"validFromTimestamp\\\\\\\":1748964317,\\\\\\\"observationsTimestamp\\\\\\\":1748964317} Decoded Report for Feed ID 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce: ------------------------------------------ Observations Timestamp: 1748964317 Benchmark Price : 1137900000000000100 Valid From Timestamp : 1748964317 Expires At : 1751556317 Link Fee : 22197028066651888 Native Fee : 121007366323395 Market Status : 2 ------------------------------------------\\\"};duplicate=1\",\"expected\":\"2025-06-03T10:25:18-05:00 Raw report data: {\\\"fullReport\\\":\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd69000000000000000000000000000000000000000000000000000000000041438a000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f13dd00000000000000000000000000000000000000000000000000000000683f13dd00000000000000000000000000000000000000000000000000006e0e3915bcc3000000000000000000000000000000000000000000000000004edc1454fb6ef0000000000000000000000000000000000000000000000000000000006866a0dd0000000000000000000000000000000000000000000000000fcaa20569eac064000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000027b160a6824ccce49dc0bd19f636c40de2f3033410c7d1a7400b9a3cb0073d19dde0f87cfd6d9ce03156464a49cacb07136d2e7d717efcf42bc2795fd5c513e4a00000000000000000000000000000000000000000000000000000000000000025e075a9d8a6223ce2b9e524a7b5a563c2924a67b544e6676a751f5374b2a42ee37684b560eb72546f87b7287cefc668705461b7f4ebe4dabd7babe397cc98b89\\\",\\\"feedID\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\",\\\"validFromTimestamp\\\":1748964317,\\\"observationsTimestamp\\\":1748964317} Decoded Report for Feed ID 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce: ------------------------------------------ Observations Timestamp: 1748964317 Benchmark Price : 1137900000000000100 Valid From Timestamp : 1748964317 Expires At : 1751556317 Link Fee : 22197028066651888 Native Fee : 121007366323395 Market Status : 2 ------------------------------------------\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"go run single-feed.go 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"go run single-feed.go 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Decoded report details\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Decoded report details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Attribute\\\"};duplicate=1\",\"expected\":\"Attribute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execute your application:\\\"};duplicate=1\",\"expected\":\"Execute your application:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=1\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Feed ID\\\"};duplicate=1\",\"expected\":\"Feed ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For this example, you will read from the EUR/USD DataLink feed on testnet. This feed ID is\\\"};duplicate=1\",\"expected\":\"For this example, you will read from the EUR/USD DataLink feed on testnet. This feed ID is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go Version: Make sure you have Go version 1.22.4 or higher. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Go Version: Make sure you have Go version 1.22.4 or higher. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decoded report details include:\\\"};duplicate=1\",\"expected\":\"The decoded report details include:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"go version\\\"};duplicate=1\",\"expected\":\"go version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=2\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"Raw report data: Report { feed_id: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce, valid_from_timestamp: 1748966929, observations_timestamp: 1748966929, full_report: \\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415fd1000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1e1100000000000000000000000000000000000000000000000000000000683f1e1100000000000000000000000000000000000000000000000000006f281ec8c2c6000000000000000000000000000000000000000000000000004f6b0f877eab70000000000000000000000000000000000000000000000000000000006866ab110000000000000000000000000000000000000000000000000fcac666a3b54000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000026c31dc4316b41ab7561ea418b6f6ca693583479b4743c2578c5e30874059c326bba94e9aeeeba7689d16da5b0df2eb19a6d6b650440be0a4959e9ef32fca7c280000000000000000000000000000000000000000000000000000000000000002110cc59c55562602ae9212e71b25c5730286185fe0f8eb6537c5a267ce7a6f0c5f55b424ecdf617b38b0a1fdaffbc34b662b29a5054125c9b2be5d57724466ee\\\\\\\" } Decoded Report for Stream ID 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce: ------------------------------------------ Observations Timestamp: 1748966929 Benchmark Price : 1137940000000000000 Valid From Timestamp : 1748966929 Expires At : 1751558929 Link Fee : 22354237602048880 Native Fee : 122218105848518 Market Status : 2 ------------------------------------------\\\"};duplicate=1\",\"expected\":\"Raw report data: Report { feed_id: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce, valid_from_timestamp: 1748966929, observations_timestamp: 1748966929, full_report: \\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415fd1000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1e1100000000000000000000000000000000000000000000000000000000683f1e1100000000000000000000000000000000000000000000000000006f281ec8c2c6000000000000000000000000000000000000000000000000004f6b0f877eab70000000000000000000000000000000000000000000000000000000006866ab110000000000000000000000000000000000000000000000000fcac666a3b54000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000026c31dc4316b41ab7561ea418b6f6ca693583479b4743c2578c5e30874059c326bba94e9aeeeba7689d16da5b0df2eb19a6d6b650440be0a4959e9ef32fca7c280000000000000000000000000000000000000000000000000000000000000002110cc59c55562602ae9212e71b25c5730286185fe0f8eb6537c5a267ce7a6f0c5f55b424ecdf617b38b0a1fdaffbc34b662b29a5054125c9b2be5d57724466ee\\\" } Decoded Report for Stream ID 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce: ------------------------------------------ Observations Timestamp: 1748966929 Benchmark Price : 1137940000000000000 Valid From Timestamp : 1748966929 Expires At : 1751558929 Link Fee : 22354237602048880 Native Fee : 122218105848518 Market Status : 2 ------------------------------------------\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cargo run -- 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"cargo run -- 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Decoded report details\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Decoded report details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Attribute\\\"};duplicate=1\",\"expected\":\"Attribute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Build and run your application:\\\"};duplicate=1\",\"expected\":\"Build and run your application:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=1\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Feed ID\\\"};duplicate=1\",\"expected\":\"Feed ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For this example, you will read from the EUR/USD DataLink feed. This feed ID is\\\"};duplicate=1\",\"expected\":\"For this example, you will read from the EUR/USD DataLink feed. This feed ID is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decoded report details include:\\\"};duplicate=1\",\"expected\":\"The decoded report details include:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/fetch-decode/api-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/onchain-verification-evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". You can find the verifier proxy addresses on the\\\"};duplicate=1\",\"expected\":\". You can find the verifier proxy addresses on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/onchain-verification-evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\\\"};duplicate=1\",\"expected\":\"0x2ff010DEbC1297f19579B4246cad07bd24F2488A\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/onchain-verification-evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Arbitrum Sepolia testnet and LINK token contract\\\"};duplicate=1\",\"expected\":\"Arbitrum Sepolia testnet and LINK token contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/onchain-verification-evm\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the Contract section, select the ClientReportsVerifier contract and fill in the Arbitrum Sepolia verifier proxy address:\\\"};duplicate=1\",\"expected\":\"In the Contract section, select the ClientReportsVerifier contract and fill in the Arbitrum Sepolia verifier proxy address:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/onchain-verification-evm\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"2025-06-03T11:00:21-05:00 Raw report data: {\\\\\\\"fullReport\\\\\\\":\\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415a52000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1c1500000000000000000000000000000000000000000000000000000000683f1c1500000000000000000000000000000000000000000000000000006ed14d655b7f000000000000000000000000000000000000000000000000004f3ee8709ff739000000000000000000000000000000000000000000000000000000006866a9150000000000000000000000000000000000000000000000000fc8b012a2e7080000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002ba6f4e2b770d818a554bd2b2a3c5bc1c0f15632af10e7b08c29d79fb0ad77fa16091843dd3ab39ece9274fb0c44f7fd8694b87724d9d4906e715672170bd8abb00000000000000000000000000000000000000000000000000000000000000026dc37bff09cd3673d53e60872b65ee6e566f11f2f1a308b38a6f0bdfa9f25ab15bd4599ab01c9d06c744b9f6d41e3f50e5cccc1a564e7e2c930c7af0b74f1f36\\\\\\\",\\\\\\\"feedID\\\\\\\":\\\\\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\\\\\",\\\\\\\"validFromTimestamp\\\\\\\":1748966421,\\\\\\\"observationsTimestamp\\\\\\\":1748966421} 2025-06-03T11:00:21-05:00 --- Report Stream ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748966421 Benchmark Price : 1137352500000000000 Valid From Timestamp : 1748966421 Expires At : 1751558421 Link Fee : 22305691203008313 Native Fee : 121845225708415 Market Status : 2 ------------------------------------------ 2025-06-03T11:00:21-05:00 --- Stream Stats --- accepted: 1, deduplicated: 0, total_received 1, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections 1 -------------------------------------------------------------------------------------------------------------------------------------------- 2025-06-03T11:00:22-05:00 Raw report data: {\\\\\\\"fullReport\\\\\\\":\\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415a55000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1c1600000000000000000000000000000000000000000000000000000000683f1c1600000000000000000000000000000000000000000000000000006ed0247f9673000000000000000000000000000000000000000000000000004f3f25cd2ee9ee000000000000000000000000000000000000000000000000000000006866a9160000000000000000000000000000000000000000000000000fc8dd8c2b242800000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024e36294fb0464d2d1fa23512a03ca207d3adc9a9eef0291fd541eefdc364085a208276cb25ceb18587a8bd7bc8de54a74e3040cfda1aca3591913b51fa8b9bda0000000000000000000000000000000000000000000000000000000000000002347dd491b33b8dbd78c1a0d4b4641beb9cee1d761c3e56e7181845ac73b4efca490e36c776ac856bbf89a68064fde4c3bed22c43e48a4c3c4fb7cbe470eaa544\\\\\\\",\\\\\\\"feedID\\\\\\\":\\\\\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\\\\\",\\\\\\\"validFromTimestamp\\\\\\\":1748966422,\\\\\\\"observationsTimestamp\\\\\\\":1748966422} 2025-06-03T11:00:22-05:00 --- Report Stream ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748966422 Benchmark Price : 1137402500000000000 Valid From Timestamp : 1748966422 Expires At : 1751558422 Link Fee : 22305954748885486 Native Fee : 121840244594291 Market Status : 2 ------------------------------------------ 2025-06-03T11:00:22-05:00 --- Stream Stats --- accepted: 2, deduplicated: 0, total_received 2, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections 1 -------------------------------------------------------------------------------------------------------------------------------------------- 2025-06-03T11:00:23-05:00 Raw report data: {\\\\\\\"fullReport\\\\\\\":\\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415a58000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1c1700000000000000000000000000000000000000000000000000000000683f1c1700000000000000000000000000000000000000000000000000006ed11dd755d2000000000000000000000000000000000000000000000000004f3ee813f33a33000000000000000000000000000000000000000000000000000000006866a9170000000000000000000000000000000000000000000000000fc8dd8c2b24280000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002622edb20ce1b998661a29c9b45953e2d37aee73fd68305183bd00240b1b2c89f95df58e73235dd3b4872ad2c185605985cf952ce1837f6724af00aba74eb42b300000000000000000000000000000000000000000000000000000000000000024cec2d619f9e12c9caf22f675bc4df44a5930644be5562b8bb0fe3e3c859e7f34937b468c19f3c41c6bab8813311724897b1ab1c3aa1ffa783ad9aa5fcf258eb\\\\\\\",\\\\\\\"feedID\\\\\\\":\\\\\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\\\\\",\\\\\\\"validFromTimestamp\\\\\\\":1748966423,\\\\\\\"observationsTimestamp\\\\\\\":1748966423} 2025-06-03T11:00:23-05:00 --- Report Stream ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748966423 Benchmark Price : 1137402500000000000 Valid From Timestamp : 1748966423 Expires At : 1751558423 Link Fee : 22305689648183859 Native Fee : 121844427871698 Market Status : 2 ------------------------------------------ 2025-06-03T11:00:23-05:00 --- Stream Stats --- accepted: 3, deduplicated: 0, total_received 3, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections 1 -------------------------------------------------------------------------------------------------------------------------------------------- [...]\\\"};duplicate=1\",\"expected\":\"2025-06-03T11:00:21-05:00 Raw report data: {\\\"fullReport\\\":\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415a52000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1c1500000000000000000000000000000000000000000000000000000000683f1c1500000000000000000000000000000000000000000000000000006ed14d655b7f000000000000000000000000000000000000000000000000004f3ee8709ff739000000000000000000000000000000000000000000000000000000006866a9150000000000000000000000000000000000000000000000000fc8b012a2e7080000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002ba6f4e2b770d818a554bd2b2a3c5bc1c0f15632af10e7b08c29d79fb0ad77fa16091843dd3ab39ece9274fb0c44f7fd8694b87724d9d4906e715672170bd8abb00000000000000000000000000000000000000000000000000000000000000026dc37bff09cd3673d53e60872b65ee6e566f11f2f1a308b38a6f0bdfa9f25ab15bd4599ab01c9d06c744b9f6d41e3f50e5cccc1a564e7e2c930c7af0b74f1f36\\\",\\\"feedID\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\",\\\"validFromTimestamp\\\":1748966421,\\\"observationsTimestamp\\\":1748966421} 2025-06-03T11:00:21-05:00 --- Report Stream ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748966421 Benchmark Price : 1137352500000000000 Valid From Timestamp : 1748966421 Expires At : 1751558421 Link Fee : 22305691203008313 Native Fee : 121845225708415 Market Status : 2 ------------------------------------------ 2025-06-03T11:00:21-05:00 --- Stream Stats --- accepted: 1, deduplicated: 0, total_received 1, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections 1 -------------------------------------------------------------------------------------------------------------------------------------------- 2025-06-03T11:00:22-05:00 Raw report data: {\\\"fullReport\\\":\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415a55000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1c1600000000000000000000000000000000000000000000000000000000683f1c1600000000000000000000000000000000000000000000000000006ed0247f9673000000000000000000000000000000000000000000000000004f3f25cd2ee9ee000000000000000000000000000000000000000000000000000000006866a9160000000000000000000000000000000000000000000000000fc8dd8c2b242800000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024e36294fb0464d2d1fa23512a03ca207d3adc9a9eef0291fd541eefdc364085a208276cb25ceb18587a8bd7bc8de54a74e3040cfda1aca3591913b51fa8b9bda0000000000000000000000000000000000000000000000000000000000000002347dd491b33b8dbd78c1a0d4b4641beb9cee1d761c3e56e7181845ac73b4efca490e36c776ac856bbf89a68064fde4c3bed22c43e48a4c3c4fb7cbe470eaa544\\\",\\\"feedID\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\",\\\"validFromTimestamp\\\":1748966422,\\\"observationsTimestamp\\\":1748966422} 2025-06-03T11:00:22-05:00 --- Report Stream ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748966422 Benchmark Price : 1137402500000000000 Valid From Timestamp : 1748966422 Expires At : 1751558422 Link Fee : 22305954748885486 Native Fee : 121840244594291 Market Status : 2 ------------------------------------------ 2025-06-03T11:00:22-05:00 --- Stream Stats --- accepted: 2, deduplicated: 0, total_received 2, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections 1 -------------------------------------------------------------------------------------------------------------------------------------------- 2025-06-03T11:00:23-05:00 Raw report data: {\\\"fullReport\\\":\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000415a58000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f1c1700000000000000000000000000000000000000000000000000000000683f1c1700000000000000000000000000000000000000000000000000006ed11dd755d2000000000000000000000000000000000000000000000000004f3ee813f33a33000000000000000000000000000000000000000000000000000000006866a9170000000000000000000000000000000000000000000000000fc8dd8c2b24280000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002622edb20ce1b998661a29c9b45953e2d37aee73fd68305183bd00240b1b2c89f95df58e73235dd3b4872ad2c185605985cf952ce1837f6724af00aba74eb42b300000000000000000000000000000000000000000000000000000000000000024cec2d619f9e12c9caf22f675bc4df44a5930644be5562b8bb0fe3e3c859e7f34937b468c19f3c41c6bab8813311724897b1ab1c3aa1ffa783ad9aa5fcf258eb\\\",\\\"feedID\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\",\\\"validFromTimestamp\\\":1748966423,\\\"observationsTimestamp\\\":1748966423} 2025-06-03T11:00:23-05:00 --- Report Stream ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748966423 Benchmark Price : 1137402500000000000 Valid From Timestamp : 1748966423 Expires At : 1751558423 Link Fee : 22305689648183859 Native Fee : 121844427871698 Market Status : 2 ------------------------------------------ 2025-06-03T11:00:23-05:00 --- Stream Stats --- accepted: 3, deduplicated: 0, total_received 3, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections 1 -------------------------------------------------------------------------------------------------------------------------------------------- [...]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"go run stream.go 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"go run stream.go 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Decoded report details\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Decoded report details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Attribute\\\"};duplicate=1\",\"expected\":\"Attribute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Execute your application:\\\"};duplicate=1\",\"expected\":\"Execute your application:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=1\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Feed ID\\\"};duplicate=1\",\"expected\":\"Feed ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For this example, you'll subscribe to the EUR/USD DataLink feed on testnet. This feed ID is\\\"};duplicate=1\",\"expected\":\"For this example, you'll subscribe to the EUR/USD DataLink feed on testnet. This feed ID is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Git: Make sure you have Git installed. You can check your current version by running\\\"};duplicate=1\",\"expected\":\"Git: Make sure you have Git installed. You can check your current version by running\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decoded report details include:\\\"};duplicate=1\",\"expected\":\"The decoded report details include:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for the Data Streams Aggregation Network. Use\\\"};duplicate=1\",\"expected\":\"for the Data Streams Aggregation Network. Use\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for the testnet environment.\\\"};duplicate=1\",\"expected\":\"for the testnet environment.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"git --version\\\"};duplicate=1\",\"expected\":\"git --version\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"in your terminal and download the latest version from the official\\\"};duplicate=1\",\"expected\":\"in your terminal and download the latest version from the official\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-go\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"wss://ws.testnet-dataengine.chain.link\\\"};duplicate=1\",\"expected\":\"wss://ws.testnet-dataengine.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"2025-06-03T16:18:20.232313Z INFO my_data_link_project: WebSocket connection established. Listening for reports... 2025-06-03T16:18:20.232481Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Received ping: [49] 2025-06-03T16:18:20.232534Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Responding with pong: [49] 2025-06-03T16:18:20.550416Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Received new report from Data Streams Endpoint. 2025-06-03T16:18:20.550857Z INFO my_data_link_project: Raw report data: Report { feed_id: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce, valid_from_timestamp: 1748967500, observations_timestamp: 1748967500, full_report: \\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd6900000000000000000000000000000000000000000000000000000000004165ff000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f204c00000000000000000000000000000000000000000000000000000000683f204c00000000000000000000000000000000000000000000000000006f12bdac46c0000000000000000000000000000000000000000000000000004f29241147b58e000000000000000000000000000000000000000000000000000000006866ad4c0000000000000000000000000000000000000000000000000fcb2a7202a220000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000291e7ab37d47a051d06bf9a17e743a30305560fa1ed63eb1e94530b9ff8e00998f2dc9e4876e60bde9f43fbbeb3a1c98bca91b71c98f25a329aa4843a1cdf5acc00000000000000000000000000000000000000000000000000000000000000023d6c77dce452fedcb47942020c574f291fdb259c64e2a42cfce0fbe2f2df092a3703bb5e167b80f388c323ec1d3cf9d298bc077d903a4297671c395e6d34b550\\\\\\\" } 2025-06-03T16:18:20.551775Z INFO my_data_link_project: --- Report Feed ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748967500 Benchmark Price : 1138050000000000000 Valid From Timestamp : 1748967500 Expires At : 1751559500 Link Fee : 22281758045615502 Native Fee : 122126282278592 Market Status : 2 ------------------------------------------ 2025-06-03T16:18:20.551946Z INFO my_data_link_project: --- Stream Stats --- StatsSnapshot { accepted: 1, deduplicated: 0, total_received: 1, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections: 1, } -------------------------------------------------------------------------------------------------------------------------------------------- 2025-06-03T16:18:21.503569Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Received new report from Data Streams Endpoint. 2025-06-03T16:18:21.503786Z INFO my_data_link_project: Raw report data: Report { feed_id: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce, valid_from_timestamp: 1748967501, observations_timestamp: 1748967501, full_report: \\\\\\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000416602000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f204d00000000000000000000000000000000000000000000000000000000683f204d00000000000000000000000000000000000000000000000000006f120e9d6f70000000000000000000000000000000000000000000000000004f2899581124ed000000000000000000000000000000000000000000000000000000006866ad4d0000000000000000000000000000000000000000000000000fcb2a7202a2200000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002bfc1839b35307881f3bca8fb4d5f08dc3da6d60f8ed43e31b36bbccbdc8e1abb9f8bf045a6c3cb96fba8536e81b3e92a54b4762cd1a85ad552cf4c664715c0bd00000000000000000000000000000000000000000000000000000000000000023b0c7ad0fdfdb598d53fee4d7026957c1c30e8c9056a267dc40d8ee8000168a72d6a2349a71f41a200b8f600fbedfb5b4c4ebf69ac86a794748268a9b3972594\\\\\\\" } 2025-06-03T16:18:21.504481Z INFO my_data_link_project: --- Report Feed ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748967501 Benchmark Price : 1138050000000000000 Valid From Timestamp : 1748967501 Expires At : 1751559501 Link Fee : 22281162232767725 Native Fee : 122123345293168 Market Status : 2 ------------------------------------------ 2025-06-03T16:18:21.504537Z INFO my_data_link_project: --- Stream Stats --- StatsSnapshot { accepted: 2, deduplicated: 0, total_received: 2, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections: 1, } [...]\\\"};duplicate=1\",\"expected\":\"2025-06-03T16:18:20.232313Z INFO my_data_link_project: WebSocket connection established. Listening for reports... 2025-06-03T16:18:20.232481Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Received ping: [49] 2025-06-03T16:18:20.232534Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Responding with pong: [49] 2025-06-03T16:18:20.550416Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Received new report from Data Streams Endpoint. 2025-06-03T16:18:20.550857Z INFO my_data_link_project: Raw report data: Report { feed_id: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce, valid_from_timestamp: 1748967500, observations_timestamp: 1748967500, full_report: \\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd6900000000000000000000000000000000000000000000000000000000004165ff000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f204c00000000000000000000000000000000000000000000000000000000683f204c00000000000000000000000000000000000000000000000000006f12bdac46c0000000000000000000000000000000000000000000000000004f29241147b58e000000000000000000000000000000000000000000000000000000006866ad4c0000000000000000000000000000000000000000000000000fcb2a7202a220000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000291e7ab37d47a051d06bf9a17e743a30305560fa1ed63eb1e94530b9ff8e00998f2dc9e4876e60bde9f43fbbeb3a1c98bca91b71c98f25a329aa4843a1cdf5acc00000000000000000000000000000000000000000000000000000000000000023d6c77dce452fedcb47942020c574f291fdb259c64e2a42cfce0fbe2f2df092a3703bb5e167b80f388c323ec1d3cf9d298bc077d903a4297671c395e6d34b550\\\" } 2025-06-03T16:18:20.551775Z INFO my_data_link_project: --- Report Feed ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748967500 Benchmark Price : 1138050000000000000 Valid From Timestamp : 1748967500 Expires At : 1751559500 Link Fee : 22281758045615502 Native Fee : 122126282278592 Market Status : 2 ------------------------------------------ 2025-06-03T16:18:20.551946Z INFO my_data_link_project: --- Stream Stats --- StatsSnapshot { accepted: 1, deduplicated: 0, total_received: 1, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections: 1, } -------------------------------------------------------------------------------------------------------------------------------------------- 2025-06-03T16:18:21.503569Z INFO chainlink_data_streams_sdk::stream::monitor_connection: Received new report from Data Streams Endpoint. 2025-06-03T16:18:21.503786Z INFO my_data_link_project: Raw report data: Report { feed_id: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce, valid_from_timestamp: 1748967501, observations_timestamp: 1748967501, full_report: \\\"0x00090d9e8d96765a0c49e03a6ae05c82e8f8de70cf179baa632f18313e54bd690000000000000000000000000000000000000000000000000000000000416602000000000000000000000000000000000000000000000000000000030000000100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce00000000000000000000000000000000000000000000000000000000683f204d00000000000000000000000000000000000000000000000000000000683f204d00000000000000000000000000000000000000000000000000006f120e9d6f70000000000000000000000000000000000000000000000000004f2899581124ed000000000000000000000000000000000000000000000000000000006866ad4d0000000000000000000000000000000000000000000000000fcb2a7202a2200000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002bfc1839b35307881f3bca8fb4d5f08dc3da6d60f8ed43e31b36bbccbdc8e1abb9f8bf045a6c3cb96fba8536e81b3e92a54b4762cd1a85ad552cf4c664715c0bd00000000000000000000000000000000000000000000000000000000000000023b0c7ad0fdfdb598d53fee4d7026957c1c30e8c9056a267dc40d8ee8000168a72d6a2349a71f41a200b8f600fbedfb5b4c4ebf69ac86a794748268a9b3972594\\\" } 2025-06-03T16:18:21.504481Z INFO my_data_link_project: --- Report Feed ID: 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce --- ------------------------------------------ Observations Timestamp : 1748967501 Benchmark Price : 1138050000000000000 Valid From Timestamp : 1748967501 Expires At : 1751559501 Link Fee : 22281162232767725 Native Fee : 122123345293168 Market Status : 2 ------------------------------------------ 2025-06-03T16:18:21.504537Z INFO my_data_link_project: --- Stream Stats --- StatsSnapshot { accepted: 2, deduplicated: 0, total_received: 2, partial_reconnects: 0, full_reconnects: 0, configured_connections: 1, active_connections: 1, } [...]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"cargo run -- 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"cargo run -- 0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"use chainlink_data_streams_sdk::config::WebSocketHighAvailability; let config = Config::new( api_key, api_secret, \\\\\\\"https://api.dataengine.chain.link\\\\\\\", \\\\\\\"wss://ws.dataengine.chain.link\\\\\\\", ) .with_ws_ha(WebSocketHighAvailability::Enabled) .build()?;\\\"};duplicate=1\",\"expected\":\"use chainlink_data_streams_sdk::config::WebSocketHighAvailability; let config = Config::new( api_key, api_secret, \\\"https://api.dataengine.chain.link\\\", \\\"wss://ws.dataengine.chain.link\\\", ) .with_ws_ha(WebSocketHighAvailability::Enabled) .build()?;\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Decoded report details\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Decoded report details\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"High Availability (HA) mode\\\",\\\"url\\\":\\\"/data-streams/reference/data-streams-api/rust-sdk#high-availability-mode\\\"};duplicate=1\",\"expected\":\"High Availability (HA) mode -> /data-streams/reference/data-streams-api/rust-sdk#high-availability-mode\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Use a mainnet WebSocket URL and enable HA mode in the configuration:\\\"};duplicate=1\",\"expected\":\". Use a mainnet WebSocket URL and enable HA mode in the configuration:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\\\"};duplicate=1\",\"expected\":\"0x0004b9905d8337c34e00f8dbe31619428bac5c3937e73e6af75c71780f1770ce\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Attribute\\\"};duplicate=1\",\"expected\":\"Attribute\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Build and run your application:\\\"};duplicate=1\",\"expected\":\"Build and run your application:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Description\\\"};duplicate=1\",\"expected\":\"Description\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expect output similar to the following in your terminal:\\\"};duplicate=1\",\"expected\":\"Expect output similar to the following in your terminal:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Feed ID\\\"};duplicate=1\",\"expected\":\"Feed ID\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For this example, you'll subscribe to the EUR/USD DataLink feed on testnet. This feed ID is\\\"};duplicate=1\",\"expected\":\"For this example, you'll subscribe to the EUR/USD DataLink feed on testnet. This feed ID is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The decoded report details include:\\\"};duplicate=1\",\"expected\":\"The decoded report details include:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The example above demonstrates streaming data from a single crypto stream. For production environments, especially when subscribing to multiple streams, it's recommended to enable\\\"};duplicate=1\",\"expected\":\"The example above demonstrates streaming data from a single crypto stream. For production environments, especially when subscribing to multiple streams, it's recommended to enable\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/pull-delivery/tutorials/stream-decode/ws-rust\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"When HA mode is enabled, the SDK discovers available origins from the configured WebSocket URL and maintains concurrent connections to different instances. This ensures high availability, fault tolerance, and minimizes the risk of report gaps.\\\"};duplicate=1\",\"expected\":\"When HA mode is enabled, the SDK discovers available origins from the configured WebSocket URL and maintains concurrent connections to different instances. This ensures high availability, fault tolerance, and minimizes the risk of report gaps.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"datalink/push-delivery/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=1\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"datalink/push-delivery/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Icon\\\",\\\"reason\\\":\\\"Unsupported MDX component Icon\\\"};duplicate=2\",\"component\":\"Icon\",\"reason\":\"Unsupported MDX component Icon\"}", + "{\"path\":\"datalink/push-delivery/tutorials/using-datalink-feeds\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"dta-technical-standard\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"dta-technical-standard/actors\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"dta-technical-standard/concepts/architecture\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"dta-technical-standard/concepts/payment-modes\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"dta-technical-standard/concepts/request-lifecycle\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"dta-technical-standard/how-it-works\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"dta-technical-standard/reference/glossary\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Dta\\\",\\\"reason\\\":\\\"Unsupported MDX component Dta\\\"};duplicate=1\",\"component\":\"Dta\",\"reason\":\"Unsupported MDX component Dta\"}", + "{\"path\":\"getting-started/conceptual-overview\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy Your First Smart Contract\\\"};duplicate=1\",\"expected\":\"Deploy Your First Smart Contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"getting-started/conceptual-overview\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"getting-started/conceptual-overview\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=2\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"getting-started/conceptual-overview\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/automation-station\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See the code on GitHub\\\"};duplicate=1\",\"expected\":\"See the code on GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/automation-station\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/batch-reveal\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See the code on GitHub\\\"};duplicate=1\",\"expected\":\"See the code on GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/batch-reveal\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See the code on GitHub\\\"};duplicate=1\",\"expected\":\"See the code on GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=10\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=11\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=12\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=13\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=4\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=5\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=6\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=7\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=8\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/ccip-direct-staking\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=9\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"/** * executes emergency action */ function executeEmergencyAction() external { counter += 1; circuitbrokenflag = true; emit emergencyActionPerformed(counter, feedAddress); }\\\"};duplicate=1\",\"expected\":\"/** * executes emergency action */ function executeEmergencyAction() external { counter += 1; circuitbrokenflag = true; emit emergencyActionPerformed(counter, feedAddress); }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"git clone https://github.com/smartcontractkit/quickstarts-circuitbreaker.git && \\\\\\\\ cd quickstarts-circuitbreaker\\\"};duplicate=1\",\"expected\":\"git clone https://github.com/smartcontractkit/quickstarts-circuitbreaker.git && \\\\ cd quickstarts-circuitbreaker\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"npm install @chainlink/contracts@0.6.1 --save\\\"};duplicate=1\",\"expected\":\"npm install @chainlink/contracts@0.6.1 --save\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Setup the example\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"1. Setup the example\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Deploy contracts\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Deploy contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Register and fund an upkeep\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Register and fund an upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Check emergency action\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"4. Check emergency action\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Update the example implementation contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"5. Update the example implementation contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Before you begin\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Before you begin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Cleanup\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Cleanup\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Objective\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Objective\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Overview\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Steps to implement\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Steps to implement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"0x31CF013A08c6Ac228C94551d535d5BAfE19c602a\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a\\\"};duplicate=1\",\"expected\":\"0x31CF013A08c6Ac228C94551d535d5BAfE19c602a -> https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"0x31CF013A08c6Ac228C94551d535d5BAfE19c602a\\\",\\\"url\\\":\\\"https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a\\\"};duplicate=2\",\"expected\":\"0x31CF013A08c6Ac228C94551d535d5BAfE19c602a -> https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Circuit Breaker repository\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/quickstarts-circuitbreaker\\\"};duplicate=1\",\"expected\":\"Circuit Breaker repository -> https://github.com/smartcontractkit/quickstarts-circuitbreaker\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Data Feeds\\\",\\\"url\\\":\\\"/data-feeds\\\"};duplicate=1\",\"expected\":\"Data Feeds -> /data-feeds\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"HashEx Online ABI Encoder\\\",\\\"url\\\":\\\"https://abi.hashex.org/\\\"};duplicate=1\",\"expected\":\"HashEx Online ABI Encoder -> https://abi.hashex.org/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"MetaMask\\\",\\\"url\\\":\\\"https://metamask.io/\\\"};duplicate=1\",\"expected\":\"MetaMask -> https://metamask.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Nodejs\\\",\\\"url\\\":\\\"https://nodejs.org/en/\\\"};duplicate=1\",\"expected\":\"Nodejs -> https://nodejs.org/en/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Windows Subsystem for Linux\\\",\\\"url\\\":\\\"https://learn.microsoft.com/en-us/windows/wsl/about\\\"};duplicate=1\",\"expected\":\"Windows Subsystem for Linux -> https://learn.microsoft.com/en-us/windows/wsl/about\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/fuji\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/fuji\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"following these instructions\\\",\\\"url\\\":\\\"/getting-started/intermediates-tutorial\\\"};duplicate=1\",\"expected\":\"following these instructions -> /getting-started/intermediates-tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"git\\\",\\\"url\\\":\\\"https://git-scm.com/book/en/v2/Getting-Started-Installing-Git\\\"};duplicate=1\",\"expected\":\"git -> https://git-scm.com/book/en/v2/Getting-Started-Installing-Git\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"here\\\",\\\"url\\\":\\\"/data-feeds/price-feeds/addresses\\\"};duplicate=1\",\"expected\":\"here -> /data-feeds/price-feeds/addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"smartcontractkit/quickstarts-circuitbreaker\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/quickstarts-circuitbreaker\\\"};duplicate=1\",\"expected\":\"smartcontractkit/quickstarts-circuitbreaker -> https://github.com/smartcontractkit/quickstarts-circuitbreaker\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=1\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=2\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=3\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=4\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=5\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=6\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Image)\\\"};duplicate=7\",\"expected\":\"(Image: Image)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". Find other price feed addresses\\\"};duplicate=1\",\"expected\":\". Find other price feed addresses\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". It is capable of emitting events or calling custom functions based on predefined conditions, and it comes with an interactive UI that allows users to easily configure and manage the contract.\\\"};duplicate=1\",\"expected\":\". It is capable of emitting events or calling custom functions based on predefined conditions, and it comes with an interactive UI that allows users to easily configure and manage the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=5\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"16.0.0 or higher\\\"};duplicate=1\",\"expected\":\"16.0.0 or higher\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"2000000000000\\\"};duplicate=1\",\"expected\":\"2000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"2000000000000\\\"};duplicate=2\",\"expected\":\"2000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A name for your upkeep\\\"};duplicate=1\",\"expected\":\"A name for your upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"A starting balance of 2 testnet LINK\\\"};duplicate=1\",\"expected\":\"A starting balance of 2 testnet LINK\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ABI encode the address of your newly deployed ExampleImplementation.sol contract.\\\"};duplicate=1\",\"expected\":\"ABI encode the address of your newly deployed ExampleImplementation.sol contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add testnet funds to your wallet. You will need both ERC-677 LINK and the gas currency for the chain where your contract is deployed. For this example, use Avalanche Fuji and testnet LINK. You can get both at\\\"};duplicate=1\",\"expected\":\"Add testnet funds to your wallet. You will need both ERC-677 LINK and the gas currency for the chain where your contract is deployed. For this example, use Avalanche Fuji and testnet LINK. You can get both at\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add the Avalanche Fuji testnet and LINK to your wallet:\\\"};duplicate=1\",\"expected\":\"Add the Avalanche Fuji testnet and LINK to your wallet:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Although the Check data field is marked optional, it is required for this tutorial. You'll fill this in during the next step.\\\"};duplicate=1\",\"expected\":\"Although the Check data field is marked optional, it is required for this tutorial. You'll fill this in during the next step.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Avalanche Fuji testnet\\\"};duplicate=1\",\"expected\":\"Avalanche Fuji testnet\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Before you start this tutorial, install the required tools:\\\"};duplicate=1\",\"expected\":\"Before you start this tutorial, install the required tools:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Disclaimer\\\"};duplicate=1\",\"expected\":\"CAUTION: Disclaimer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Circuit breakers are useful for pausing dApps and processes when adverse events are detected onchain. These circuit breakers can prevent loss of assets during volatile market events, unstable network conditions, or if systems that your dApp relies on become compromised.\\\"};duplicate=1\",\"expected\":\"Circuit breakers are useful for pausing dApps and processes when adverse events are detected onchain. These circuit breakers can prevent loss of assets during volatile market events, unstable network conditions, or if systems that your dApp relies on become compromised.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Add argument and select Address as the argument type from the dropdown menu. 1. Enter the address of your deployed ExampleImplementation.sol contract.\\\"};duplicate=1\",\"expected\":\"Click Add argument and select Address as the argument type from the dropdown menu. 1. Enter the address of your deployed ExampleImplementation.sol contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Deploy and confirm the transaction in your wallet.\\\"};duplicate=1\",\"expected\":\"Click Deploy and confirm the transaction in your wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Register new Upkeep.\\\"};duplicate=1\",\"expected\":\"Click Register new Upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Register upkeep and confirm the transaction in your wallet.\\\"};duplicate=1\",\"expected\":\"Click Register upkeep and confirm the transaction in your wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click the dropdown carat to expand the Deploy section:\\\"};duplicate=1\",\"expected\":\"Click the dropdown carat to expand the Deploy section:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Clone the\\\"};duplicate=1\",\"expected\":\"Clone the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enter 0x, paste the new ABI-encoded contract address, and click Change check data. MetaMask opens and prompts you to confirm the transaction.\\\"};duplicate=1\",\"expected\":\"Enter 0x, paste the new ABI-encoded contract address, and click Change check data. MetaMask opens and prompts you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Enter the following input to the constructor:\\\"};duplicate=1\",\"expected\":\"Enter the following input to the constructor:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For Target contract address, input the address of your deployed CircuitBreaker.sol contract. You can find this in your wallet's transaction history or copy it from Remix:\\\"};duplicate=1\",\"expected\":\"For Target contract address, input the address of your deployed CircuitBreaker.sol contract. You can find this in your wallet's transaction history or copy it from Remix:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For Upkeep details, add the following:\\\"};duplicate=1\",\"expected\":\"For Upkeep details, add the following:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For this tutorial, disregard the resulting npm warnings.\\\"};duplicate=1\",\"expected\":\"For this tutorial, disregard the resulting npm warnings.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For your upkeep's Check data field, you need to ABI encode the address of your deployed ExampleImplementation.sol contract.\\\"};duplicate=1\",\"expected\":\"For your upkeep's Check data field, you need to ABI encode the address of your deployed ExampleImplementation.sol contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"From the Encoded data field, copy the encoded address.\\\"};duplicate=1\",\"expected\":\"From the Encoded data field, copy the encoded address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If the counter was incremented once, you should see 0: uint256: 1 as the output:\\\"};duplicate=1\",\"expected\":\"If the counter was incremented once, you should see 0: uint256: 1 as the output:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you want to experiment further with this tutorial, you can pause the Automation upkeep so that it stops running while you work on updating your example implementation contract. Otherwise, you can cancel the upkeep to reclaim any unused testnet LINK back to your wallet. Both options are located in the Chainlink Automation app within the Actions menu on your upkeep's details page.\\\"};duplicate=1\",\"expected\":\"If you want to experiment further with this tutorial, you can pause the Automation upkeep so that it stops running while you work on updating your example implementation contract. Otherwise, you can cancel the upkeep to reclaim any unused testnet LINK back to your wallet. Both options are located in the Chainlink Automation app within the Actions menu on your upkeep's details page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you want to update your ExampleImplementation.sol contract, you can redeploy it with updated values and then use the same Automation upkeep. For example, to update the maxBalance:\\\"};duplicate=1\",\"expected\":\"If you want to update your ExampleImplementation.sol contract, you can redeploy it with updated values and then use the same Automation upkeep. For example, to update the maxBalance:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the Chainlink Automation app, within the Actions menu for your existing upkeep, click Edit check data:\\\"};duplicate=1\",\"expected\":\"In the Chainlink Automation app, within the Actions menu for your existing upkeep, click Edit check data:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Install and configure a cryptocurrency wallet like\\\"};duplicate=1\",\"expected\":\"Install and configure a cryptocurrency wallet like\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Install the chainlink/contracts npm package:\\\"};duplicate=1\",\"expected\":\"Install the chainlink/contracts npm package:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Install\\\"};duplicate=1\",\"expected\":\"Install\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Install\\\"};duplicate=2\",\"expected\":\"Install\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Item\\\"};duplicate=1\",\"expected\":\"Item\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: New to smart contracts?\\\"};duplicate=1\",\"expected\":\"NOTE: New to smart contracts?\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate back to the Chainlink Automation app. In the Check Data field, enter 0x and paste in the ABI encoded address of the ExampleImplementation.sol contract.\\\"};duplicate=1\",\"expected\":\"Navigate back to the Chainlink Automation app. In the Check Data field, enter 0x and paste in the ABI encoded address of the ExampleImplementation.sol contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to Remix and expand the details for your deployed ExampleImplementation.sol contract. Click the counter button to view the value of the counter variable.\\\"};duplicate=1\",\"expected\":\"Navigate to Remix and expand the details for your deployed ExampleImplementation.sol contract. Click the counter button to view the value of the counter variable.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to the\\\"};duplicate=1\",\"expected\":\"Navigate to the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate to your upkeep in the Chainlink Automation app. If the executeEmergencyAction() function is triggered, you will see \\\\\\\"Perform upkeep\\\\\\\" logs listed in the History section.\\\"};duplicate=1\",\"expected\":\"Navigate to your upkeep in the Chainlink Automation app. If the executeEmergencyAction() function is triggered, you will see \\\"Perform upkeep\\\" logs listed in the History section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Next, deploy the CircuitBreaker.sol contract:\\\"};duplicate=1\",\"expected\":\"Next, deploy the CircuitBreaker.sol contract:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Now the Chainlink Automation network will watch your contract for these trigger parameters. If the price from the feed you provided is above the maxBalance threshold that was specified, the executeEmergencyAction() function will trigger. As defined in ExampleImplementation.sol, the function increments a counter:\\\"};duplicate=1\",\"expected\":\"Now the Chainlink Automation network will watch your contract for these trigger parameters. If the price from the feed you provided is above the maxBalance threshold that was specified, the executeEmergencyAction() function will trigger. As defined in ExampleImplementation.sol, the function increments a counter:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field. Make sure the CircuitBreaker.sol contract is selected in the Contract field.\\\"};duplicate=1\",\"expected\":\"On the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field. Make sure the CircuitBreaker.sol contract is selected in the Contract field.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field. Make sure the ExampleImplementation.sol contract is selected in the Contract field.\\\"};duplicate=1\",\"expected\":\"On the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field. Make sure the ExampleImplementation.sol contract is selected in the Contract field.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Solidity compiler tab, click Compile CircuitBreaker.sol.\\\"};duplicate=1\",\"expected\":\"On the Solidity compiler tab, click Compile CircuitBreaker.sol.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"On the Solidity compiler tab, click Compile ExampleImplementation.sol.\\\"};duplicate=1\",\"expected\":\"On the Solidity compiler tab, click Compile ExampleImplementation.sol.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open in Remix\\\"};duplicate=1\",\"expected\":\"Open in Remix\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open in Remix\\\"};duplicate=2\",\"expected\":\"Open in Remix\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=1\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the CircuitBreaker.sol contract in Remix:\\\"};duplicate=1\",\"expected\":\"Open the CircuitBreaker.sol contract in Remix:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the ExampleImplementation.sol contract in Remix:\\\"};duplicate=1\",\"expected\":\"Open the ExampleImplementation.sol contract in Remix:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Redeploy the ExampleImplementation.sol contract with your updated maxBalance value.\\\"};duplicate=1\",\"expected\":\"Redeploy the ExampleImplementation.sol contract with your updated maxBalance value.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registering an upkeep on Chainlink Automation creates a smart contract that will run your circuit breaker contract.\\\"};duplicate=1\",\"expected\":\"Registering an upkeep on Chainlink Automation creates a smart contract that will run your circuit breaker contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run git --version to check the installation. You should see an output similar to git version x.x.x.\\\"};duplicate=1\",\"expected\":\"Run git --version to check the installation. You should see an output similar to git version x.x.x.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Run node --version to check the installation. You should see an output similar to v16.x.x.\\\"};duplicate=1\",\"expected\":\"Run node --version to check the installation. You should see an output similar to v16.x.x.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Scroll down to the Deploy section:\\\"};duplicate=1\",\"expected\":\"Scroll down to the Deploy section:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See the code on GitHub\\\"};duplicate=1\",\"expected\":\"See the code on GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select the Custom logic trigger.\\\"};duplicate=1\",\"expected\":\"Select the Custom logic trigger.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The admin address and gas limit are prefilled for you.\\\"};duplicate=1\",\"expected\":\"The admin address and gas limit are prefilled for you.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The example circuit breaker contract is a highly configurable proof of concept that can be used with\\\"};duplicate=1\",\"expected\":\"The example circuit breaker contract is a highly configurable proof of concept that can be used with\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The isEmergencyPossible flag: set this to true if you want the circuit breaking condition to be checked. You can turn off this check by setting this value to false.\\\"};duplicate=1\",\"expected\":\"The isEmergencyPossible flag: set this to true if you want the circuit breaking condition to be checked. You can turn off this check by setting this value to false.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The maxBalance in sats. For example,\\\"};duplicate=1\",\"expected\":\"The maxBalance in sats. For example,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The proxy contract address of the price feed. For example, the address for the BTC/USD price feed on Fuji is\\\"};duplicate=1\",\"expected\":\"The proxy contract address of the price feed. For example, the address for the BTC/USD price feed on Fuji is\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The\\\"};duplicate=1\",\"expected\":\"The\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There are no constructor inputs for this contract. Click Deploy and confirm the transaction in your wallet.\\\"};duplicate=1\",\"expected\":\"There are no constructor inputs for this contract. Click Deploy and confirm the transaction in your wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"There may be a warning that says \\\\\\\"Unable to verify if this is an Automation compatible contract.\\\\\\\" The CircuitBreaker.sol contract does implement the AutomationCompatibleInterface so you can disregard this warning. Click Next.\\\"};duplicate=1\",\"expected\":\"There may be a warning that says \\\"Unable to verify if this is an Automation compatible contract.\\\" The CircuitBreaker.sol contract does implement the AutomationCompatibleInterface so you can disregard this warning. Click Next.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract development, deploy a VRF-compatible contract by\\\"};duplicate=1\",\"expected\":\"This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract development, deploy a VRF-compatible contract by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\\\\\"AS IS\\\\\\\" and \\\\\\\"AS AVAILABLE\\\\\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\\\"};duplicate=1\",\"expected\":\"This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\"AS IS\\\" and \\\"AS AVAILABLE\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"To set up this example, clone the source and install the required packages.\\\"};duplicate=1\",\"expected\":\"To set up this example, clone the source and install the required packages.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can run this example on Linux, MacOS, or the\\\"};duplicate=1\",\"expected\":\"You can run this example on Linux, MacOS, or the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"You can use the same process to make other changes to your example implementation contract, like changing the logic in executeEmergencyAction() or changing the price feed that you're monitoring.\\\"};duplicate=1\",\"expected\":\"You can use the same process to make other changes to your example implementation contract, like changing the logic in executeEmergencyAction() or changing the price feed that you're monitoring.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_EMERGENCYPOSSIBLE\\\"};duplicate=1\",\"expected\":\"_EMERGENCYPOSSIBLE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_FEEDADDRESS\\\"};duplicate=1\",\"expected\":\"_FEEDADDRESS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_MAXBALANCE\\\"};duplicate=1\",\"expected\":\"_MAXBALANCE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and then return to this tutorial.\\\"};duplicate=1\",\"expected\":\"and then return to this tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"contains an example implementation of a circuit breaker that can be used with any OCR price feed. You can monitor a given contract, specify the price when the circuit breaker will be triggered based on predefined conditions, and specify the underlying logic of what happens when the circuit breaker is triggered.\\\"};duplicate=1\",\"expected\":\"contains an example implementation of a circuit breaker that can be used with any OCR price feed. You can monitor a given contract, specify the price when the circuit breaker will be triggered based on predefined conditions, and specify the underlying logic of what happens when the circuit breaker is triggered.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"for a max balance of $20,000.\\\"};duplicate=1\",\"expected\":\"for a max balance of $20,000.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"repository and change directories:\\\"};duplicate=1\",\"expected\":\"repository and change directories:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"true\\\"};duplicate=1\",\"expected\":\"true\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/circuit-breaker\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Markdown parse error\\\",\\\"reason\\\":\\\"Could not parse expression with acorn\\\",\\\"servedText\\\":\\\"\\\\n## OverviewCircuit breakers are useful for pausing dApps and processes when adverse events are detected onchain. These circuit breakers can prevent loss of assets during volatile market events, unstable network conditions, or if systems that your dApp relies on become compromised.The example circuit breaker contract is a highly configurable proof of concept that can be used with [Data Feeds](/data-feeds). It is capable of emitting events or calling custom functions based on predefined conditions, and it comes with an interactive UI that allows users to easily configure and manage the contract.> **CAUTION: Disclaimer**\\\\n>\\\\n> This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how\\\\n> to interact with Chainlink's systems and services so that you can integrate them into your own. This template is\\\\n> provided \\\\\\\"AS IS\\\\\\\" and \\\\\\\"AS AVAILABLE\\\\\\\" without warranties of any kind, has not been audited, and may be missing key\\\\n> checks or error handling to make the usage of the product more clear. Do not use the code in this example in a\\\\n> production environment without completing your own audits and application of best practices. Neither Chainlink Labs,\\\\n> the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due\\\\n> to errors in code.## ObjectiveThe [Circuit Breaker repository](https://github.com/smartcontractkit/quickstarts-circuitbreaker) contains an example implementation of a circuit breaker that can be used with any OCR price feed. You can monitor a given contract, specify the price when the circuit breaker will be triggered based on predefined conditions, and specify the underlying logic of what happens when the circuit breaker is triggered.## Before you begin> **NOTE: New to smart contracts?**\\\\n>\\\\n> This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract\\\\n> development, deploy a VRF-compatible contract by [following these\\\\n> instructions](/getting-started/intermediates-tutorial) and then return to this tutorial.You can run this example on Linux, MacOS, or the [Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/about).Before you start this tutorial, install the required tools:* Install [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)\\\\n - Run `git --version` to check the installation. You should see an output similar to `git version x.x.x`.\\\\n* Install [Nodejs](https://nodejs.org/en/) 16.0.0 or higher\\\\n - Run `node --version` to check the installation. You should see an output similar to `v16.x.x`.\\\\n* Install and configure a cryptocurrency wallet like [MetaMask](https://metamask.io/).\\\\n* Add the Avalanche Fuji testnet and LINK to your wallet:\\\\n \\\\n [Avalanche Fuji testnet](/resources/link-token-contracts#avalanche-fuji-testnet)\\\\n* Add testnet funds to your wallet. You will need both ERC-677 LINK and the gas currency for the chain where your contract is deployed. For this example, use Avalanche Fuji and testnet LINK. You can get both at [faucets.chain.link](https://faucets.chain.link/fuji).## Steps to implement### 1. Setup the exampleTo set up this example, clone the source and install the required packages.1) Clone the [smartcontractkit/quickstarts-circuitbreaker](https://github.com/smartcontractkit/quickstarts-circuitbreaker) repository and change directories:\\\\n\\\\n ```shell\\\\n git clone https://github.com/smartcontractkit/quickstarts-circuitbreaker.git && \\\\\\\\\\\\n cd quickstarts-circuitbreaker\\\\n ```\\\\n\\\\n2) Install the `chainlink/contracts` npm package:\\\\n\\\\n ```shell\\\\n npm install @chainlink/contracts@0.6.1 --save\\\\n ```\\\\n\\\\n For this tutorial, disregard the resulting `npm` warnings.### 2. Deploy contracts1) Open the `ExampleImplementation.sol` contract in Remix:\\\\n\\\\n2) On the **Solidity compiler** tab, click **Compile `ExampleImplementation.sol`**.\\\\n\\\\n3) On the **Deploy and run transactions** tab, select *Injected Provider - MetaMask* for the **Environment** field. Make sure the `ExampleImplementation.sol` contract is selected in the **Contract** field.\\\\n\\\\n4) Scroll down to the **Deploy** section:\\\\n\\\\n \\\\n\\\\n ![Image](/images/quickstarts/circuit-breaker/example-implementation-deploy.png)\\\\n\\\\n Click the dropdown carat to expand the **Deploy** section:\\\\n\\\\n \\\\n\\\\n ![Image](/images/quickstarts/circuit-breaker/example-implementation-deploy-expanded.png)\\\\n\\\\n5) Enter the following input to the constructor:\\\\n\\\\n | Item | Value |\\\\n | -------------------- | ----------------------------------------------------------------------------------------------------------------------------- |\\\\n | `_MAXBALANCE` | 2000000000000 |\\\\n | `_FEEDADDRESS` | [0x31CF013A08c6Ac228C94551d535d5BAfE19c602a](https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a) |\\\\n | `_EMERGENCYPOSSIBLE` | true |\\\\n\\\\n - The `maxBalance` in sats. For example, 2000000000000 for a max balance of $20,000.\\\\n - The proxy contract address of the price feed. For example, the address for the BTC/USD price feed on Fuji is [0x31CF013A08c6Ac228C94551d535d5BAfE19c602a](https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a). Find other price feed addresses [here](/data-feeds/price-feeds/addresses).\\\\n - The `isEmergencyPossible` flag: set this to `true` if you want the circuit breaking condition to be checked. You can turn off this check by setting this value to `false`.\\\\n\\\\n6) Click **Deploy** and confirm the transaction in your wallet.Next, deploy the `CircuitBreaker.sol` contract:1) Open the `CircuitBreaker.sol` contract in Remix:\\\\n\\\\n2) On the **Solidity compiler** tab, click **Compile `CircuitBreaker.sol`**.\\\\n\\\\n3) On the **Deploy and run transactions** tab, select *Injected Provider - MetaMask* for the **Environment** field. Make sure the `CircuitBreaker.sol` contract is selected in the **Contract** field.\\\\n\\\\n4) There are no constructor inputs for this contract. Click **Deploy** and confirm the transaction in your wallet.### 3. Register and fund an upkeepRegistering an upkeep on Chainlink Automation creates a smart contract that will run your circuit breaker contract. 1) Click **Register new Upkeep**.\\\\n\\\\n2) Select the *Custom logic* trigger.\\\\n\\\\n3) For *Target contract address*, input the address of your deployed `CircuitBreaker.sol` contract. You can find this in your wallet's transaction history or copy it from Remix: ![Image](/images/quickstarts/circuit-breaker/circuit-breaker-copy-address.png)There may be a warning that says \\\\\\\"Unable to verify if this is an Automation compatible contract.\\\\\\\" The `CircuitBreaker.sol` contract does implement the `AutomationCompatibleInterface` so you can disregard this warning. Click **Next**.1) For **Upkeep details**, add the following:\\\\n - A name for your upkeep\\\\n - A starting balance of 2 testnet LINK\\\\n - The admin address and gas limit are prefilled for you.\\\\n - Although the **Check data** field is marked optional, it is **required** for this tutorial. You'll fill this in during the next step.\\\\n\\\\n2) For your upkeep's **Check data** field, you need to ABI encode the address of your deployed `ExampleImplementation.sol` contract.\\\\n 1. Navigate to the [HashEx Online ABI Encoder](https://abi.hashex.org/).\\\\n\\\\n 2. Click **Add argument** and select **Address** as the argument type from the dropdown menu. 1. Enter the address of your deployed `ExampleImplementation.sol` contract.\\\\n\\\\n ![Image](/images/quickstarts/circuit-breaker/hashex-abi-encoder-address.png)\\\\n\\\\n 3. From the **Encoded data** field, copy the encoded address.\\\\n\\\\n 4. Navigate back to the Chainlink Automation app. In the **Check Data** field, enter `0x` and paste in the ABI encoded address of the `ExampleImplementation.sol` contract.\\\\n\\\\n3) Click **Register upkeep** and confirm the transaction in your wallet.### 4. Check emergency actionNow the Chainlink Automation network will watch your contract for these trigger parameters. If the price from the feed you provided is above the `maxBalance` threshold that was specified, the `executeEmergencyAction()` function will trigger. As defined in `ExampleImplementation.sol`, the function increments a counter:```solidity\\\\n/**\\\\n * executes emergency action\\\\n */\\\\nfunction executeEmergencyAction() external {\\\\n counter += 1;\\\\n circuitbrokenflag = true;\\\\n emit emergencyActionPerformed(counter, feedAddress);\\\\n}\\\\n```1) Navigate to your upkeep in the Chainlink Automation app. If the `executeEmergencyAction()` function is triggered, you will see \\\\\\\"Perform upkeep\\\\\\\" logs listed in the **History** section.\\\\n2) Navigate to Remix and expand the details for your deployed `ExampleImplementation.sol` contract. Click the **counter** button to view the value of the `counter` variable.\\\\n3) If the counter was incremented once, you should see `0: uint256: 1` as the output:\\\\n\\\\n ![Image](/images/quickstarts/circuit-breaker/check-counter.png)### 5. Update the example implementation contractIf you want to update your `ExampleImplementation.sol` contract, you can redeploy it with updated values and then use the same Automation upkeep. For example, to update the `maxBalance`:1) Redeploy the `ExampleImplementation.sol` contract with your updated `maxBalance` value.\\\\n\\\\n2) ABI encode the address of your newly deployed `ExampleImplementation.sol` contract.\\\\n\\\\n3) In the Chainlink Automation app, within the **Actions** menu for your existing upkeep, click **Edit check data**:\\\\n\\\\n ![Image](/images/quickstarts/circuit-breaker/automation-edit-checkdata.png)\\\\n\\\\n4) Enter `0x`, paste the new ABI-encoded contract address, and click **Change check data**. MetaMask opens and prompts you to confirm the transaction.\\\\n\\\\n ![Image](/images/quickstarts/circuit-breaker/automation-change-checkdata.png)You can use the same process to make other changes to your example implementation contract, like changing the logic in `executeEmergencyAction()` or changing the price feed that you're monitoring.## CleanupIf you want to experiment further with this tutorial, you can pause the Automation upkeep so that it stops running while you work on updating your example implementation contract. Otherwise, you can cancel the upkeep to reclaim any unused testnet LINK back to your wallet. Both options are located in the Chainlink Automation app within the **Actions** menu on your upkeep's details page.\\\"};duplicate=1\",\"component\":\"Markdown parse error\",\"reason\":\"Could not parse expression with acorn\",\"servedText\":\"\\n## OverviewCircuit breakers are useful for pausing dApps and processes when adverse events are detected onchain. These circuit breakers can prevent loss of assets during volatile market events, unstable network conditions, or if systems that your dApp relies on become compromised.The example circuit breaker contract is a highly configurable proof of concept that can be used with [Data Feeds](/data-feeds). It is capable of emitting events or calling custom functions based on predefined conditions, and it comes with an interactive UI that allows users to easily configure and manage the contract.> **CAUTION: Disclaimer**\\n>\\n> This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how\\n> to interact with Chainlink's systems and services so that you can integrate them into your own. This template is\\n> provided \\\"AS IS\\\" and \\\"AS AVAILABLE\\\" without warranties of any kind, has not been audited, and may be missing key\\n> checks or error handling to make the usage of the product more clear. Do not use the code in this example in a\\n> production environment without completing your own audits and application of best practices. Neither Chainlink Labs,\\n> the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due\\n> to errors in code.## ObjectiveThe [Circuit Breaker repository](https://github.com/smartcontractkit/quickstarts-circuitbreaker) contains an example implementation of a circuit breaker that can be used with any OCR price feed. You can monitor a given contract, specify the price when the circuit breaker will be triggered based on predefined conditions, and specify the underlying logic of what happens when the circuit breaker is triggered.## Before you begin> **NOTE: New to smart contracts?**\\n>\\n> This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract\\n> development, deploy a VRF-compatible contract by [following these\\n> instructions](/getting-started/intermediates-tutorial) and then return to this tutorial.You can run this example on Linux, MacOS, or the [Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/about).Before you start this tutorial, install the required tools:* Install [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)\\n - Run `git --version` to check the installation. You should see an output similar to `git version x.x.x`.\\n* Install [Nodejs](https://nodejs.org/en/) 16.0.0 or higher\\n - Run `node --version` to check the installation. You should see an output similar to `v16.x.x`.\\n* Install and configure a cryptocurrency wallet like [MetaMask](https://metamask.io/).\\n* Add the Avalanche Fuji testnet and LINK to your wallet:\\n \\n [Avalanche Fuji testnet](/resources/link-token-contracts#avalanche-fuji-testnet)\\n* Add testnet funds to your wallet. You will need both ERC-677 LINK and the gas currency for the chain where your contract is deployed. For this example, use Avalanche Fuji and testnet LINK. You can get both at [faucets.chain.link](https://faucets.chain.link/fuji).## Steps to implement### 1. Setup the exampleTo set up this example, clone the source and install the required packages.1) Clone the [smartcontractkit/quickstarts-circuitbreaker](https://github.com/smartcontractkit/quickstarts-circuitbreaker) repository and change directories:\\n\\n ```shell\\n git clone https://github.com/smartcontractkit/quickstarts-circuitbreaker.git && \\\\\\n cd quickstarts-circuitbreaker\\n ```\\n\\n2) Install the `chainlink/contracts` npm package:\\n\\n ```shell\\n npm install @chainlink/contracts@0.6.1 --save\\n ```\\n\\n For this tutorial, disregard the resulting `npm` warnings.### 2. Deploy contracts1) Open the `ExampleImplementation.sol` contract in Remix:\\n\\n2) On the **Solidity compiler** tab, click **Compile `ExampleImplementation.sol`**.\\n\\n3) On the **Deploy and run transactions** tab, select *Injected Provider - MetaMask* for the **Environment** field. Make sure the `ExampleImplementation.sol` contract is selected in the **Contract** field.\\n\\n4) Scroll down to the **Deploy** section:\\n\\n \\n\\n ![Image](/images/quickstarts/circuit-breaker/example-implementation-deploy.png)\\n\\n Click the dropdown carat to expand the **Deploy** section:\\n\\n \\n\\n ![Image](/images/quickstarts/circuit-breaker/example-implementation-deploy-expanded.png)\\n\\n5) Enter the following input to the constructor:\\n\\n | Item | Value |\\n | -------------------- | ----------------------------------------------------------------------------------------------------------------------------- |\\n | `_MAXBALANCE` | 2000000000000 |\\n | `_FEEDADDRESS` | [0x31CF013A08c6Ac228C94551d535d5BAfE19c602a](https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a) |\\n | `_EMERGENCYPOSSIBLE` | true |\\n\\n - The `maxBalance` in sats. For example, 2000000000000 for a max balance of $20,000.\\n - The proxy contract address of the price feed. For example, the address for the BTC/USD price feed on Fuji is [0x31CF013A08c6Ac228C94551d535d5BAfE19c602a](https://testnet.snowtrace.io/address/0x31CF013A08c6Ac228C94551d535d5BAfE19c602a). Find other price feed addresses [here](/data-feeds/price-feeds/addresses).\\n - The `isEmergencyPossible` flag: set this to `true` if you want the circuit breaking condition to be checked. You can turn off this check by setting this value to `false`.\\n\\n6) Click **Deploy** and confirm the transaction in your wallet.Next, deploy the `CircuitBreaker.sol` contract:1) Open the `CircuitBreaker.sol` contract in Remix:\\n\\n2) On the **Solidity compiler** tab, click **Compile `CircuitBreaker.sol`**.\\n\\n3) On the **Deploy and run transactions** tab, select *Injected Provider - MetaMask* for the **Environment** field. Make sure the `CircuitBreaker.sol` contract is selected in the **Contract** field.\\n\\n4) There are no constructor inputs for this contract. Click **Deploy** and confirm the transaction in your wallet.### 3. Register and fund an upkeepRegistering an upkeep on Chainlink Automation creates a smart contract that will run your circuit breaker contract. 1) Click **Register new Upkeep**.\\n\\n2) Select the *Custom logic* trigger.\\n\\n3) For *Target contract address*, input the address of your deployed `CircuitBreaker.sol` contract. You can find this in your wallet's transaction history or copy it from Remix: ![Image](/images/quickstarts/circuit-breaker/circuit-breaker-copy-address.png)There may be a warning that says \\\"Unable to verify if this is an Automation compatible contract.\\\" The `CircuitBreaker.sol` contract does implement the `AutomationCompatibleInterface` so you can disregard this warning. Click **Next**.1) For **Upkeep details**, add the following:\\n - A name for your upkeep\\n - A starting balance of 2 testnet LINK\\n - The admin address and gas limit are prefilled for you.\\n - Although the **Check data** field is marked optional, it is **required** for this tutorial. You'll fill this in during the next step.\\n\\n2) For your upkeep's **Check data** field, you need to ABI encode the address of your deployed `ExampleImplementation.sol` contract.\\n 1. Navigate to the [HashEx Online ABI Encoder](https://abi.hashex.org/).\\n\\n 2. Click **Add argument** and select **Address** as the argument type from the dropdown menu. 1. Enter the address of your deployed `ExampleImplementation.sol` contract.\\n\\n ![Image](/images/quickstarts/circuit-breaker/hashex-abi-encoder-address.png)\\n\\n 3. From the **Encoded data** field, copy the encoded address.\\n\\n 4. Navigate back to the Chainlink Automation app. In the **Check Data** field, enter `0x` and paste in the ABI encoded address of the `ExampleImplementation.sol` contract.\\n\\n3) Click **Register upkeep** and confirm the transaction in your wallet.### 4. Check emergency actionNow the Chainlink Automation network will watch your contract for these trigger parameters. If the price from the feed you provided is above the `maxBalance` threshold that was specified, the `executeEmergencyAction()` function will trigger. As defined in `ExampleImplementation.sol`, the function increments a counter:```solidity\\n/**\\n * executes emergency action\\n */\\nfunction executeEmergencyAction() external {\\n counter += 1;\\n circuitbrokenflag = true;\\n emit emergencyActionPerformed(counter, feedAddress);\\n}\\n```1) Navigate to your upkeep in the Chainlink Automation app. If the `executeEmergencyAction()` function is triggered, you will see \\\"Perform upkeep\\\" logs listed in the **History** section.\\n2) Navigate to Remix and expand the details for your deployed `ExampleImplementation.sol` contract. Click the **counter** button to view the value of the `counter` variable.\\n3) If the counter was incremented once, you should see `0: uint256: 1` as the output:\\n\\n ![Image](/images/quickstarts/circuit-breaker/check-counter.png)### 5. Update the example implementation contractIf you want to update your `ExampleImplementation.sol` contract, you can redeploy it with updated values and then use the same Automation upkeep. For example, to update the `maxBalance`:1) Redeploy the `ExampleImplementation.sol` contract with your updated `maxBalance` value.\\n\\n2) ABI encode the address of your newly deployed `ExampleImplementation.sol` contract.\\n\\n3) In the Chainlink Automation app, within the **Actions** menu for your existing upkeep, click **Edit check data**:\\n\\n ![Image](/images/quickstarts/circuit-breaker/automation-edit-checkdata.png)\\n\\n4) Enter `0x`, paste the new ABI-encoded contract address, and click **Change check data**. MetaMask opens and prompts you to confirm the transaction.\\n\\n ![Image](/images/quickstarts/circuit-breaker/automation-change-checkdata.png)You can use the same process to make other changes to your example implementation contract, like changing the logic in `executeEmergencyAction()` or changing the price feed that you're monitoring.## CleanupIf you want to experiment further with this tutorial, you can pause the Automation upkeep so that it stops running while you work on updating your example implementation contract. Otherwise, you can cancel the upkeep to reclaim any unused testnet LINK back to your wallet. Both options are located in the Chainlink Automation app within the **Actions** menu on your upkeep's details page.\"}", + "{\"path\":\"quickstarts/dev3-chainlink-sdk\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/dynamic-metadata\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open in Remix\\\"};duplicate=1\",\"expected\":\"Open in Remix\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/dynamic-metadata\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See the code on GitHub\\\"};duplicate=1\",\"expected\":\"See the code on GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/dynamic-metadata\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"quickstarts/dynamic-metadata\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/dynamic-metadata\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"(Image: Create dynamic giveaway)\\\"};duplicate=1\",\"expected\":\"(Image: Create dynamic giveaway)\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0xE16Df59B887e3Caa439E0b29B42bA2e7976FD8b2\\\"};duplicate=1\",\"expected\":\"0xE16Df59B887e3Caa439E0b29B42bA2e7976FD8b2\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add 0x before your key.\\\"};duplicate=1\",\"expected\":\"Add 0x before your key.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For Ethereum Sepolia:\\\"};duplicate=1\",\"expected\":\"For Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For Ethereum Sepolia:\\\"};duplicate=2\",\"expected\":\"For Ethereum Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See all\\\"};duplicate=1\",\"expected\":\"See all\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The private key of the account you want to deploy from.\\\"};duplicate=1\",\"expected\":\"The private key of the account you want to deploy from.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This app currently supports Automation v1.2. See all\\\"};duplicate=1\",\"expected\":\"This app currently supports Automation v1.2. See all\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/giveaway\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=3\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/hardhat-plugin\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/hardhat-plugin\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/hardhat-plugin\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/hardhat-plugin\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"5000000000000000000\\\"};duplicate=1\",\"expected\":\"5000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Add 0x before your key.\\\"};duplicate=1\",\"expected\":\"Add 0x before your key.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Approve the deployed contract to spend LINK. Run the approve function with your deployed contract address and\\\"};duplicate=1\",\"expected\":\"Approve the deployed contract to spend LINK. Run the approve function with your deployed contract address and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Juels (5 LINK) as variables. Click Write to run the function. MetaMask asks you to approve the transaction.\\\"};duplicate=1\",\"expected\":\"Juels (5 LINK) as variables. Click Write to run the function. MetaMask asks you to approve the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The private key of the account you want to deploy from.\\\"};duplicate=1\",\"expected\":\"The private key of the account you want to deploy from.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/pass-cost-to-end-user\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"quickstarts/time-based-upkeep\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=1\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/time-based-upkeep\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/time-based-upkeep\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/vrf-enabled-lootbox-pack\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"See the code on GitHub\\\"};duplicate=1\",\"expected\":\"See the code on GitHub\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-enabled-lootbox-pack\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"quickstarts/vrf-enabled-lootbox-pack\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"/** * @notice Gets a list of subscriptions that are underfunded. * @return list of subscriptions that are underfunded */ function getUnderfundedSubscriptions() public view returns (uint64[] memory) { uint64[] memory watchList = s_watchList; uint64[] memory needsFunding = new uint64[](watchList.length); uint256 count = 0; uint256 minWaitPeriod = s_minWaitPeriodSeconds; uint256 contractBalance = LINKTOKEN.balanceOf(address(this)); Target memory target; for (uint256 idx = 0; idx < watchList.length; idx++) { target = s_targets[watchList[idx]]; (uint96 subscriptionBalance, , , ) = COORDINATOR.getSubscription(watchList[idx]); if ( target.lastTopUpTimestamp + minWaitPeriod <= block.timestamp && contractBalance >= target.topUpAmountJuels && subscriptionBalance < target.minBalanceJuels ) { needsFunding[count] = watchList[idx]; count++; contractBalance -= target.topUpAmountJuels; } } if (count < watchList.length) { assembly { mstore(needsFunding, count) } } return needsFunding; }\\\"};duplicate=1\",\"expected\":\"/** * @notice Gets a list of subscriptions that are underfunded. * @return list of subscriptions that are underfunded */ function getUnderfundedSubscriptions() public view returns (uint64[] memory) { uint64[] memory watchList = s_watchList; uint64[] memory needsFunding = new uint64[](watchList.length); uint256 count = 0; uint256 minWaitPeriod = s_minWaitPeriodSeconds; uint256 contractBalance = LINKTOKEN.balanceOf(address(this)); Target memory target; for (uint256 idx = 0; idx < watchList.length; idx++) { target = s_targets[watchList[idx]]; (uint96 subscriptionBalance, , , ) = COORDINATOR.getSubscription(watchList[idx]); if ( target.lastTopUpTimestamp + minWaitPeriod <= block.timestamp && contractBalance >= target.topUpAmountJuels && subscriptionBalance < target.minBalanceJuels ) { needsFunding[count] = watchList[idx]; count++; contractBalance -= target.topUpAmountJuels; } } if (count < watchList.length) { assembly { mstore(needsFunding, count) } } return needsFunding; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"/** * @notice Gets list of subscription ids that are underfunded and returns a keeper-compatible payload. * @return upkeepNeeded signals if upkeep is needed, performData is an abi encoded list of subscription ids that need funds */ function checkUpkeep( bytes calldata ) external view override whenNotPaused returns (bool upkeepNeeded, bytes memory performData) { uint64[] memory needsFunding = getUnderfundedSubscriptions(); upkeepNeeded = needsFunding.length > 0; performData = abi.encode(needsFunding); return (upkeepNeeded, performData); } /** * @notice Called by the keeper to send funds to underfunded addresses. * @param performData the abi encoded list of addresses to fund */ function performUpkeep(bytes calldata performData) external override onlyKeeperRegistry whenNotPaused { uint64[] memory needsFunding = abi.decode(performData, (uint64[])); topUp(needsFunding); }\\\"};duplicate=1\",\"expected\":\"/** * @notice Gets list of subscription ids that are underfunded and returns a keeper-compatible payload. * @return upkeepNeeded signals if upkeep is needed, performData is an abi encoded list of subscription ids that need funds */ function checkUpkeep( bytes calldata ) external view override whenNotPaused returns (bool upkeepNeeded, bytes memory performData) { uint64[] memory needsFunding = getUnderfundedSubscriptions(); upkeepNeeded = needsFunding.length > 0; performData = abi.encode(needsFunding); return (upkeepNeeded, performData); } /** * @notice Called by the keeper to send funds to underfunded addresses. * @param performData the abi encoded list of addresses to fund */ function performUpkeep(bytes calldata performData) external override onlyKeeperRegistry whenNotPaused { uint64[] memory needsFunding = abi.decode(performData, (uint64[])); topUp(needsFunding); }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"code\\\",\\\"value\\\":\\\"struct Target { bool isActive; uint96 minBalanceJuels; uint96 topUpAmountJuels; uint56 lastTopUpTimestamp; } ... /** * @notice Sets the list of subscriptions to watch and their funding parameters. * @param subscriptionIds the list of subscription ids to watch * @param minBalancesJuels the minimum balances for each subscription * @param topUpAmountsJuels the amount to top up each subscription */ function setWatchList( uint64[] calldata subscriptionIds, uint96[] calldata minBalancesJuels, uint96[] calldata topUpAmountsJuels ) external onlyOwner { if (subscriptionIds.length != minBalancesJuels.length || subscriptionIds.length != topUpAmountsJuels.length) { revert InvalidWatchList(); } uint64[] memory oldWatchList = s_watchList; for (uint256 idx = 0; idx < oldWatchList.length; idx++) { s_targets[oldWatchList[idx]].isActive = false; } for (uint256 idx = 0; idx < subscriptionIds.length; idx++) { if (s_targets[subscriptionIds[idx]].isActive) { revert DuplicateSubscriptionId(subscriptionIds[idx]); } if (subscriptionIds[idx] == 0) { revert InvalidWatchList(); } if (topUpAmountsJuels[idx] <= minBalancesJuels[idx]) { revert InvalidWatchList(); } s_targets[subscriptionIds[idx]] = Target({ isActive: true, minBalanceJuels: minBalancesJuels[idx], topUpAmountJuels: topUpAmountsJuels[idx], lastTopUpTimestamp: 0 }); } s_watchList = subscriptionIds; }\\\"};duplicate=1\",\"expected\":\"struct Target { bool isActive; uint96 minBalanceJuels; uint96 topUpAmountJuels; uint56 lastTopUpTimestamp; } ... /** * @notice Sets the list of subscriptions to watch and their funding parameters. * @param subscriptionIds the list of subscription ids to watch * @param minBalancesJuels the minimum balances for each subscription * @param topUpAmountsJuels the amount to top up each subscription */ function setWatchList( uint64[] calldata subscriptionIds, uint96[] calldata minBalancesJuels, uint96[] calldata topUpAmountsJuels ) external onlyOwner { if (subscriptionIds.length != minBalancesJuels.length || subscriptionIds.length != topUpAmountsJuels.length) { revert InvalidWatchList(); } uint64[] memory oldWatchList = s_watchList; for (uint256 idx = 0; idx < oldWatchList.length; idx++) { s_targets[oldWatchList[idx]].isActive = false; } for (uint256 idx = 0; idx < subscriptionIds.length; idx++) { if (s_targets[subscriptionIds[idx]].isActive) { revert DuplicateSubscriptionId(subscriptionIds[idx]); } if (subscriptionIds[idx] == 0) { revert InvalidWatchList(); } if (topUpAmountsJuels[idx] <= minBalancesJuels[idx]) { revert InvalidWatchList(); } s_targets[subscriptionIds[idx]] = Target({ isActive: true, minBalanceJuels: minBalancesJuels[idx], topUpAmountJuels: topUpAmountsJuels[idx], lastTopUpTimestamp: 0 }); } s_watchList = subscriptionIds; }\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"1. Create VRF subscriptions to monitor\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"1. Create VRF subscriptions to monitor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"2. Deploy VRF-compatible contracts as consumers\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"2. Deploy VRF-compatible contracts as consumers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"3. Deploy the subscription balance monitor contract\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"3. Deploy the subscription balance monitor contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"4. Register the subscription balance monitor contract on Automation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"4. Register the subscription balance monitor contract on Automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"5. Configure the subscription watch list\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"5. Configure the subscription watch list\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Before you begin\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Before you begin\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Examine the code\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Examine the code\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Get required inputs for the balance monitor contract\\\",\\\"depth\\\":4};duplicate=1\",\"expected\":\"Get required inputs for the balance monitor contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Objective\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Objective\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Overview\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Overview\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Register an upkeep\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Register an upkeep\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Steps to implement\\\",\\\"depth\\\":2};duplicate=1\",\"expected\":\"Steps to implement\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Tracking subscriptions\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Tracking subscriptions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"heading\\\",\\\"value\\\":\\\"Using Automation\\\",\\\"depth\\\":3};duplicate=1\",\"expected\":\"Using Automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789 -> https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625\\\",\\\"url\\\":\\\"https://sepolia.etherscan.io/address/0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625\\\"};duplicate=1\",\"expected\":\"0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625 -> https://sepolia.etherscan.io/address/0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Automation supported networks\\\",\\\"url\\\":\\\"/chainlink-automation/overview/supported-networks\\\"};duplicate=1\",\"expected\":\"Automation supported networks -> /chainlink-automation/overview/supported-networks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Create VRF subscriptions to monitor\\\",\\\"url\\\":\\\"#create-vrf-subscriptions-to-monitor\\\"};duplicate=1\",\"expected\":\"Create VRF subscriptions to monitor -> #create-vrf-subscriptions-to-monitor\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Deploy VRF-compatible contracts\\\",\\\"url\\\":\\\"#deploy-vrf-compatible-contracts-as-consumers\\\"};duplicate=1\",\"expected\":\"Deploy VRF-compatible contracts -> #deploy-vrf-compatible-contracts-as-consumers\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Deploy Your First Smart Contract\\\",\\\"url\\\":\\\"/quickstarts/deploy-your-first-contract\\\"};duplicate=1\",\"expected\":\"Deploy Your First Smart Contract -> /quickstarts/deploy-your-first-contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"LINK token contracts\\\",\\\"url\\\":\\\"/resources/link-token-contracts\\\"};duplicate=1\",\"expected\":\"LINK token contracts -> /resources/link-token-contracts\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"MetaMask\\\",\\\"url\\\":\\\"https://metamask.io/\\\"};duplicate=1\",\"expected\":\"MetaMask -> https://metamask.io/\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open VRFD20.sol in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link//samples/VRF/VRFD20.sol\\\"};duplicate=1\",\"expected\":\"Open VRFD20.sol in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link//samples/VRF/VRFD20.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"Open VRFSubscriptionBalanceMonitor.sol in Remix\\\",\\\"url\\\":\\\"https://remix.ethereum.org/#url=https://docs.chain.link//samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol\\\"};duplicate=1\",\"expected\":\"Open VRFSubscriptionBalanceMonitor.sol in Remix -> https://remix.ethereum.org/#url=https://docs.chain.link//samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"VRF Getting Started\\\",\\\"url\\\":\\\"/vrf/v2/getting-started\\\"};duplicate=1\",\"expected\":\"VRF Getting Started -> /vrf/v2/getting-started\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"VRF Subscription Supported Networks\\\",\\\"url\\\":\\\"/vrf/v2/subscription/supported-networks\\\"};duplicate=1\",\"expected\":\"VRF Subscription Supported Networks -> /vrf/v2/subscription/supported-networks\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"View the code on GitHub\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol\\\"};duplicate=1\",\"expected\":\"View the code on GitHub -> https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"faucets.chain.link\\\",\\\"url\\\":\\\"https://faucets.chain.link/sepolia\\\"};duplicate=1\",\"expected\":\"faucets.chain.link -> https://faucets.chain.link/sepolia\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"following these instructions\\\",\\\"url\\\":\\\"/getting-started/intermediates-tutorial\\\"};duplicate=1\",\"expected\":\"following these instructions -> /getting-started/intermediates-tutorial\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"skip to the next step\\\",\\\"url\\\":\\\"#deploy-the-subscription-balance-monitor-contract\\\"};duplicate=1\",\"expected\":\"skip to the next step -> #deploy-the-subscription-balance-monitor-contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"tracks your VRF subscriptions\\\",\\\"url\\\":\\\"#tracking-subscriptions\\\"};duplicate=1\",\"expected\":\"tracks your VRF subscriptions -> #tracking-subscriptions\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"uses Chainlink Automation\\\",\\\"url\\\":\\\"#using-automation\\\"};duplicate=1\",\"expected\":\"uses Chainlink Automation -> #using-automation\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"link\\\",\\\"value\\\":\\\"view the code for the full contract on GitHub\\\",\\\"url\\\":\\\"https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol\\\"};duplicate=1\",\"expected\":\"view the code for the full contract on GitHub -> https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\", if you don't already have any\\\"};duplicate=1\",\"expected\":\", if you don't already have any\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=1\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=2\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=3\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=4\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=5\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\".\\\"};duplicate=6\",\"expected\":\".\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x779877A7B0D9E8603169DdbD7836e478b4624789\\\"};duplicate=1\",\"expected\":\"0x779877A7B0D9E8603169DdbD7836e478b4624789\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625\\\"};duplicate=1\",\"expected\":\"0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"60\\\"};duplicate=1\",\"expected\":\"60\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After the contract is deployed successfully, copy the contract address from Remix. Navigate back to the VRF Subscription Manager and add the contract address as a consumer for your adequately funded subscription.\\\"};duplicate=1\",\"expected\":\"After the contract is deployed successfully, copy the contract address from Remix. Navigate back to the VRF Subscription Manager and add the contract address as a consumer for your adequately funded subscription.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"After you configure the function values, click transact to run the function. MetaMask asks you to confirm the transaction.\\\"};duplicate=1\",\"expected\":\"After you configure the function values, click transact to run the function. MetaMask asks you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automatically top-up your VRF subscription balances using Chainlink Automation to ensure there is sufficient funding for requests.\\\"};duplicate=1\",\"expected\":\"Automatically top-up your VRF subscription balances using Chainlink Automation to ensure there is sufficient funding for requests.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Automation only runs performUpkeep() if there are underfunded subscriptions, and it tops up any subscriptions that need funding.\\\"};duplicate=1\",\"expected\":\"Automation only runs performUpkeep() if there are underfunded subscriptions, and it tops up any subscriptions that need funding.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Before you start this tutorial, complete the following items:\\\"};duplicate=1\",\"expected\":\"Before you start this tutorial, complete the following items:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Before your contract will fund a subscription, you must set the watchList address array with minBalancesJuels and topUpAmountsJuels variables. For demonstration purposes, you configure your own wallet as the top-up address. This makes it easy to see the ETH being sent as part of the automated top-up function. After you complete this tutorial, you can configure any wallet or contract address that you want to keep funded.\\\"};duplicate=1\",\"expected\":\"Before your contract will fund a subscription, you must set the watchList address array with minBalancesJuels and topUpAmountsJuels variables. For demonstration purposes, you configure your own wallet as the top-up address. This makes it easy to see the ETH being sent as part of the automated top-up function. After you complete this tutorial, you can configure any wallet or contract address that you want to keep funded.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"CAUTION: Disclaimer\\\"};duplicate=1\",\"expected\":\"CAUTION: Disclaimer\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"COORDINATORADDRESS\\\"};duplicate=1\",\"expected\":\"COORDINATORADDRESS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Deploy. MetaMask opens and prompts you to confirm the contract deployment transaction.\\\"};duplicate=1\",\"expected\":\"Click Deploy. MetaMask opens and prompts you to confirm the contract deployment transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click Register new Upkeep.\\\"};duplicate=1\",\"expected\":\"Click Register new Upkeep.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy the address of your newly deployed contract. You can find this in Sepolia Etherscan through the contract deployment transaction, or in Remix in the Deployed Contracts section.\\\"};duplicate=1\",\"expected\":\"Copy the address of your newly deployed contract. You can find this in Sepolia Etherscan through the contract deployment transaction, or in Remix in the Deployed Contracts section.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Copy your contract address from Remix and paste it into the Target contract address field.\\\"};duplicate=1\",\"expected\":\"Copy your contract address from Remix and paste it into the Target contract address field.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Create two subscriptions:\\\"};duplicate=1\",\"expected\":\"Create two subscriptions:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy the contract, passing in the subscription ID of your adequately funded subscription.\\\"};duplicate=1\",\"expected\":\"Deploy the contract, passing in the subscription ID of your adequately funded subscription.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Deploy this VRF-compatible contract for your VRF subscription:\\\"};duplicate=1\",\"expected\":\"Deploy this VRF-compatible contract for your VRF subscription:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Expand the Deploy field and enter the values for Sepolia:\\\"};duplicate=1\",\"expected\":\"Expand the Deploy field and enter the values for Sepolia:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"For Sepolia, these values are all consolidated here:\\\"};duplicate=1\",\"expected\":\"For Sepolia, these values are all consolidated here:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fund one subscription with 12 testnet LINK to serve as the adequately funded VRF subscription\\\"};duplicate=1\",\"expected\":\"Fund one subscription with 12 testnet LINK to serve as the adequately funded VRF subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Fund the other subscription with 1 testnet LINK to serve as the underfunded VRF subscription\\\"};duplicate=1\",\"expected\":\"Fund the other subscription with 1 testnet LINK to serve as the underfunded VRF subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Gather the subscription IDs for any existing VRF subscriptions you would like to monitor. If you do not have any VRF subscriptions, you will create two for demo purposes in this tutorial.\\\"};duplicate=1\",\"expected\":\"Gather the subscription IDs for any existing VRF subscriptions you would like to monitor. If you do not have any VRF subscriptions, you will create two for demo purposes in this tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Get Sepolia testnet LINK and ETH from\\\"};duplicate=1\",\"expected\":\"Get Sepolia testnet LINK and ETH from\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Go to the Upkeep details page and copy your Forwarder address.\\\"};duplicate=1\",\"expected\":\"Go to the Upkeep details page and copy your Forwarder address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you already have existing VRF subscriptions you would like to monitor,\\\"};duplicate=1\",\"expected\":\"If you already have existing VRF subscriptions you would like to monitor,\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you are new to smart contract development, learn how to\\\"};duplicate=1\",\"expected\":\"If you are new to smart contract development, learn how to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you are unfamiliar with deploying smart contracts, deploy a VRF-compatible contract by following the\\\"};duplicate=1\",\"expected\":\"If you are unfamiliar with deploying smart contracts, deploy a VRF-compatible contract by following the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"If you don't already have existing VRF subscriptions you would like to monitor, create two VRF subscriptions for demo purposes. One subscription will be adequately funded, and the other subscription will be underfunded intentionally so that the subscription balance monitor contract can fund it.\\\"};duplicate=1\",\"expected\":\"If you don't already have existing VRF subscriptions you would like to monitor, create two VRF subscriptions for demo purposes. One subscription will be adequately funded, and the other subscription will be underfunded intentionally so that the subscription balance monitor contract can fund it.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In checkUpkeep(), it pulls the list of underfunded subscriptions. If this list is empty, it indicates that the upkeep is not needed, and Automation takes no further action.\\\"};duplicate=1\",\"expected\":\"In checkUpkeep(), it pulls the list of underfunded subscriptions. If this list is empty, it indicates that the upkeep is not needed, and Automation takes no further action.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the functions list, click the getWatchList function to confirm your settings are correct.\\\"};duplicate=1\",\"expected\":\"In the functions list, click the getWatchList function to confirm your settings are correct.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In the list of functions for your deployed contract, run the setWatchList function. This function requires an subscriptionIds array, a minBalancesJuels array that maps to the subscriptions, and a topUpAmountsJuels array that also maps to the subscriptions. In Remix, arrays require brackets and quotes around integer values. For this example, set the following values:\\\"};duplicate=1\",\"expected\":\"In the list of functions for your deployed contract, run the setWatchList function. This function requires an subscriptionIds array, a minBalancesJuels array that maps to the subscriptions, and a topUpAmountsJuels array that also maps to the subscriptions. In Remix, arrays require brackets and quotes around integer values. For this example, set the following values:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this section, you will deploy the same VRF contract twice. Each deployed contract will serve as a consuming contract for one of your VRF subscriptions.\\\"};duplicate=1\",\"expected\":\"In this section, you will deploy the same VRF contract twice. Each deployed contract will serve as a consuming contract for one of your VRF subscriptions.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this section, you will deploy the subscription balance monitor contract, using the same address that is the admin owner for both of your VRF subscriptions. The contract will monitor any VRF subscriptions owned by this address, and fund any underfunded subscriptions using funds owned by this address.\\\"};duplicate=1\",\"expected\":\"In this section, you will deploy the subscription balance monitor contract, using the same address that is the admin owner for both of your VRF subscriptions. The contract will monitor any VRF subscriptions owned by this address, and fund any underfunded subscriptions using funds owned by this address.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"In this section, you will register an upkeep on Chainlink Automation to run the subscription balance monitor contract. This enables Automation to check whether you have any underfunded VRF subscriptions, and if so, top up their balances appropriately.\\\"};duplicate=1\",\"expected\":\"In this section, you will register an upkeep on Chainlink Automation to run the subscription balance monitor contract. This enables Automation to check whether you have any underfunded VRF subscriptions, and if so, top up their balances appropriately.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Install and configure a cryptocurrency wallet like\\\"};duplicate=1\",\"expected\":\"Install and configure a cryptocurrency wallet like\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"It's been long enough since the last time the subscription's balance was topped up\\\"};duplicate=1\",\"expected\":\"It's been long enough since the last time the subscription's balance was topped up\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Item\\\"};duplicate=1\",\"expected\":\"Item\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Item\\\"};duplicate=2\",\"expected\":\"Item\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINK token address\\\"};duplicate=1\",\"expected\":\"LINK token address\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"LINKTOKENADDRESS\\\"};duplicate=1\",\"expected\":\"LINKTOKENADDRESS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"MINWAITPERIODSECONDS\\\"};duplicate=1\",\"expected\":\"MINWAITPERIODSECONDS\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Minimum wait period, which you can use to add buffer time between funding multiple subscription IDs. For demo purposes, you will monitor only two VRF subscriptions, so you can set this value to 60 seconds.\\\"};duplicate=1\",\"expected\":\"Minimum wait period, which you can use to add buffer time between funding multiple subscription IDs. For demo purposes, you will monitor only two VRF subscriptions, so you can set this value to 60 seconds.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE: New to smart contracts?\\\"};duplicate=1\",\"expected\":\"NOTE: New to smart contracts?\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"NOTE\\\"};duplicate=1\",\"expected\":\"NOTE\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate back to Remix and find the setForwarderAddress function. Paste your forwarder address and click click transact to run the function. MetaMask asks you to confirm the transaction.\\\"};duplicate=1\",\"expected\":\"Navigate back to Remix and find the setForwarderAddress function. Paste your forwarder address and click click transact to run the function. MetaMask asks you to confirm the transaction.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Navigate back to Remix to deploy the contract once more. Change the subscription ID to the subscription ID of your intentionally underfunded subscription, and click Deploy.\\\"};duplicate=1\",\"expected\":\"Navigate back to Remix to deploy the contract once more. Change the subscription ID to the subscription ID of your intentionally underfunded subscription, and click Deploy.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Now that you've registered the upkeep and configured your contract with your new upkeep's forwarder address, Chainlink Automation handles the rest of the process.\\\"};duplicate=1\",\"expected\":\"Now that you've registered the upkeep and configured your contract with your new upkeep's forwarder address, Chainlink Automation handles the rest of the process.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Once more, after the contract is deployed successfully, copy the second contract address from Remix. Navigate back to the VRF Subscription Manager and add this second contract address as a consumer for your intentionally underfunded subscription.\\\"};duplicate=1\",\"expected\":\"Once more, after the contract is deployed successfully, copy the second contract address from Remix. Navigate back to the VRF Subscription Manager and add this second contract address as a consumer for your intentionally underfunded subscription.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Chainlink Automation App\\\"};duplicate=1\",\"expected\":\"Open the Chainlink Automation App\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Subscription Manager\\\"};duplicate=1\",\"expected\":\"Open the Subscription Manager\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the VRF Subscription Manager, and connect your wallet.\\\"};duplicate=1\",\"expected\":\"Open the VRF Subscription Manager, and connect your wallet.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the VRFSubscriptionBalanceMonitor.sol contract in Remix.\\\"};duplicate=1\",\"expected\":\"Open the VRFSubscriptionBalanceMonitor.sol contract in Remix.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Registering an upkeep on Chainlink Automation creates a smart contract that will run your VRF subscription balance monitor contract.\\\"};duplicate=1\",\"expected\":\"Registering an upkeep on Chainlink Automation creates a smart contract that will run your VRF subscription balance monitor contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Select the Custom logic trigger option.\\\"};duplicate=1\",\"expected\":\"Select the Custom logic trigger option.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Specify a name for your upkeep and set a Starting balance of 5 LINK for this demo. Leave the other settings at their default values.\\\"};duplicate=1\",\"expected\":\"Specify a name for your upkeep and set a Starting balance of 5 LINK for this demo. Leave the other settings at their default values.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The Automation registry address, which is found on the\\\"};duplicate=1\",\"expected\":\"The Automation registry address, which is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The LINK token address, which is found on the\\\"};duplicate=1\",\"expected\":\"The LINK token address, which is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The VRF coordinator address, which is found on the\\\"};duplicate=1\",\"expected\":\"The VRF coordinator address, which is found on the\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The VRFSubscriptionBalanceMonitor.sol contract tracks your VRF subscriptions by creating a watchlist and storing attributes of each subscription required to monitor when they need funding.\\\"};duplicate=1\",\"expected\":\"The VRFSubscriptionBalanceMonitor.sol contract tracks your VRF subscriptions by creating a watchlist and storing attributes of each subscription required to monitor when they need funding.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The VRFSubscriptionBalanceMonitor.sol contract uses Chainlink Automation to top up underfunded subscriptions:\\\"};duplicate=1\",\"expected\":\"The VRFSubscriptionBalanceMonitor.sol contract uses Chainlink Automation to top up underfunded subscriptions:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The constructor for this contract requires the following information for the supported network that you want to deploy on:\\\"};duplicate=1\",\"expected\":\"The constructor for this contract requires the following information for the supported network that you want to deploy on:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The getUnderfundedSubscriptions() function assesses each subscription in the watchlist and creates a list of subscriptions that need to be funded. Using the attributes stored in the Target struct for each subscription, this function adds a subscription to the needsFunding list if the following conditions are met:\\\"};duplicate=1\",\"expected\":\"The getUnderfundedSubscriptions() function assesses each subscription in the watchlist and creates a list of subscriptions that need to be funded. Using the attributes stored in the Target struct for each subscription, this function adds a subscription to the needsFunding list if the following conditions are met:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The owning contract has a sufficient balance to fund the subscription\\\"};duplicate=1\",\"expected\":\"The owning contract has a sufficient balance to fund the subscription\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The setWatchList() function creates the watchlist of subscriptions, validates it, and then sets a Target for each subscription. The Target struct helps track whether a subscription is active, its minimum balance, when it was last funded, and the amount of LINK (in juels) to send to the subscription each time it is topped up.\\\"};duplicate=1\",\"expected\":\"The setWatchList() function creates the watchlist of subscriptions, validates it, and then sets a Target for each subscription. The Target struct helps track whether a subscription is active, its minimum balance, when it was last funded, and the amount of LINK (in juels) to send to the subscription each time it is topped up.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"The subscription is underfunded\\\"};duplicate=1\",\"expected\":\"The subscription is underfunded\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"These values tell the top up contract to top up the specified address with 0.01 LINK if the address balance is less than 2 LINK. These settings are intended to demonstrate the example using testnet faucet funds. For a production application, you might set more reasonable values that top up a smart contract with 10 LINK if the balance is less than 1 LINK.\\\"};duplicate=1\",\"expected\":\"These values tell the top up contract to top up the specified address with 0.01 LINK if the address balance is less than 2 LINK. These settings are intended to demonstrate the example using testnet faucet funds. For a production application, you might set more reasonable values that top up a smart contract with 10 LINK if the balance is less than 1 LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This VRFD20.sol contract uses VRF to randomly assign you a Game of Thrones house. The VRF coordinator address and key hash values are hardcoded in this contract for Sepolia. If you want to use a different testnet, you must update those values before deploying the contract.\\\"};duplicate=1\",\"expected\":\"This VRFD20.sol contract uses VRF to randomly assign you a Game of Thrones house. The VRF coordinator address and key hash values are hardcoded in this contract for Sepolia. If you want to use a different testnet, you must update those values before deploying the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This example shows how to automate the process for funding VRF subscription balances. You will deploy and test a VRF subscription balance manager contract that monitors multiple subscriptions and tops them up with LINK as necessary. You can set up this contract to monitor existing VRF subscriptions. Alternatively, you will create two VRF subscriptions for testing: one that is underfunded, and another that is adequately funded. When you test the subscription balance manager contract, it only tops up the underfunded subscription.\\\"};duplicate=1\",\"expected\":\"This example shows how to automate the process for funding VRF subscription balances. You will deploy and test a VRF subscription balance manager contract that monitors multiple subscriptions and tops them up with LINK as necessary. You can set up this contract to monitor existing VRF subscriptions. Alternatively, you will create two VRF subscriptions for testing: one that is underfunded, and another that is adequately funded. When you test the subscription balance manager contract, it only tops up the underfunded subscription.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This section explains how the VRFSubscriptionBalanceMonitor.sol contract\\\"};duplicate=1\",\"expected\":\"This section explains how the VRFSubscriptionBalanceMonitor.sol contract\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract development, deploy a VRF-compatible contract by\\\"};duplicate=1\",\"expected\":\"This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract development, deploy a VRF-compatible contract by\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\\\\\"AS IS\\\\\\\" and \\\\\\\"AS AVAILABLE\\\\\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\\\"};duplicate=1\",\"expected\":\"This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how to interact with Chainlink's systems and services so that you can integrate them into your own. This template is provided \\\"AS IS\\\" and \\\"AS AVAILABLE\\\" without warranties of any kind, has not been audited, and may be missing key checks or error handling to make the usage of the product more clear. Do not use the code in this example in a production environment without completing your own audits and application of best practices. Neither Chainlink Labs, the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due to errors in code.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"This tutorial requires you to set up the following components in VRF before you use Automation to monitor VRF subscriptions:\\\"};duplicate=1\",\"expected\":\"This tutorial requires you to set up the following components in VRF before you use Automation to monitor VRF subscriptions:\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field. Make sure the VRFD20.sol contract is selected in the Contract field.\\\"};duplicate=1\",\"expected\":\"Under the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field. Make sure the VRFD20.sol contract is selected in the Contract field.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field.\\\"};duplicate=1\",\"expected\":\"Under the Deploy and run transactions tab, select Injected Provider - MetaMask for the Environment field.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Solidity compiler tab, compile the contract.\\\"};duplicate=1\",\"expected\":\"Under the Solidity compiler tab, compile the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Under the Solidity compiler tab, compile the contract.\\\"};duplicate=2\",\"expected\":\"Under the Solidity compiler tab, compile the contract.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"VRF Coordinator\\\"};duplicate=1\",\"expected\":\"VRF Coordinator\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=1\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Value\\\"};duplicate=2\",\"expected\":\"Value\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and then return to this tutorial.\\\"};duplicate=1\",\"expected\":\"and then return to this tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"and\\\"};duplicate=1\",\"expected\":\"and\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"guide. Then return to this tutorial.\\\"};duplicate=1\",\"expected\":\"guide. Then return to this tutorial.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"minBalancesJuels: [\\\\\\\"2000000000000000000\\\\\\\", \\\\\\\"2000000000000000000\\\\\\\"]\\\"};duplicate=1\",\"expected\":\"minBalancesJuels: [\\\"2000000000000000000\\\", \\\"2000000000000000000\\\"]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=1\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=2\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"page.\\\"};duplicate=3\",\"expected\":\"page.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"subscriptionIds: [\\\\\\\"SUB_ID_1\\\\\\\", \\\\\\\"SUB_ID_2\\\\\\\"]\\\"};duplicate=1\",\"expected\":\"subscriptionIds: [\\\"SUB_ID_1\\\", \\\"SUB_ID_2\\\"]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"to fund your underfunded subscriptions. You can\\\"};duplicate=1\",\"expected\":\"to fund your underfunded subscriptions. You can\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"topUpAmountsJuels: [\\\\\\\"10000000000000000\\\\\\\", \\\\\\\"10000000000000000\\\\\\\"]\\\"};duplicate=1\",\"expected\":\"topUpAmountsJuels: [\\\"10000000000000000\\\", \\\"10000000000000000\\\"]\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"quickstarts/vrf-subscription-monitor\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;residual={\\\"component\\\":\\\"Markdown parse error\\\",\\\"reason\\\":\\\"Could not parse expression with acorn\\\",\\\"servedText\\\":\\\"\\\\n## OverviewAutomatically top-up your VRF subscription balances using Chainlink Automation to ensure there is sufficient funding for requests. [View the code on GitHub](https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol).## ObjectiveThis example shows how to automate the process for funding VRF subscription balances. You will deploy and test a VRF subscription balance manager contract that monitors multiple subscriptions and tops them up with LINK as necessary. You can set up this contract to monitor existing VRF subscriptions. Alternatively, you will create two VRF subscriptions for testing: one that is underfunded, and another that is adequately funded. When you test the subscription balance manager contract, it only tops up the underfunded subscription.> **CAUTION: Disclaimer**\\\\n>\\\\n> This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how\\\\n> to interact with Chainlink's systems and services so that you can integrate them into your own. This template is\\\\n> provided \\\\\\\"AS IS\\\\\\\" and \\\\\\\"AS AVAILABLE\\\\\\\" without warranties of any kind, has not been audited, and may be missing key\\\\n> checks or error handling to make the usage of the product more clear. Do not use the code in this example in a\\\\n> production environment without completing your own audits and application of best practices. Neither Chainlink Labs,\\\\n> the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due\\\\n> to errors in code.## Before you beginBefore you start this tutorial, complete the following items:- If you are new to smart contract development, learn how to [Deploy Your First Smart Contract](/quickstarts/deploy-your-first-contract).\\\\n- Install and configure a cryptocurrency wallet like [MetaMask](https://metamask.io/).\\\\n- Get Sepolia testnet LINK and ETH from [faucets.chain.link](https://faucets.chain.link/sepolia).\\\\n- Gather the subscription IDs for any existing VRF subscriptions you would like to monitor. If you do not have any VRF subscriptions, you will create two for demo purposes in this tutorial.> **NOTE: New to smart contracts?**\\\\n>\\\\n> This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract\\\\n> development, deploy a VRF-compatible contract by [following these\\\\n> instructions](/getting-started/intermediates-tutorial) and then return to this tutorial.## Steps to implementThis tutorial requires you to set up the following components in VRF before you use Automation to monitor VRF subscriptions:* [Create VRF subscriptions to monitor](#create-vrf-subscriptions-to-monitor), if you don't already have any\\\\n* [Deploy VRF-compatible contracts](#deploy-vrf-compatible-contracts-as-consumers)If you already have existing VRF subscriptions you would like to monitor, [skip to the next step](#deploy-the-subscription-balance-monitor-contract).### 1. Create VRF subscriptions to monitorIf you don't already have existing VRF subscriptions you would like to monitor, create two VRF subscriptions for demo purposes. One subscription will be adequately funded, and the other subscription will be underfunded intentionally so that the subscription balance monitor contract can fund it.1) Open the VRF Subscription Manager, and connect your wallet.\\\\n\\\\n \\\\n\\\\n2) Create two subscriptions:\\\\n - Fund one subscription with 12 testnet LINK to serve as the adequately funded VRF subscription\\\\n - Fund the other subscription with 1 testnet LINK to serve as the underfunded VRF subscription### 2. Deploy VRF-compatible contracts as consumersIn this section, you will deploy the same VRF contract twice. Each deployed contract will serve as a consuming contract for one of your VRF subscriptions.1) Deploy this VRF-compatible contract for your VRF subscription:\\\\n\\\\n [Open VRFD20.sol in Remix](https://remix.ethereum.org/#url=https://docs.chain.link//samples/VRF/VRFD20.sol)\\\\n\\\\n This `VRFD20.sol` contract uses VRF to randomly assign you a *Game of Thrones* house. The VRF coordinator address and key hash values are hardcoded in this contract for Sepolia. If you want to use a different testnet, you must update those values before deploying the contract.\\\\n\\\\n > **NOTE**\\\\n >\\\\n > If you are unfamiliar with deploying smart contracts, deploy a VRF-compatible contract by following the [VRF\\\\n > Getting Started](/vrf/v2/getting-started) guide. Then return to this tutorial.\\\\n\\\\n2) Under the *Solidity compiler* tab, compile the contract.\\\\n\\\\n3) Under the *Deploy and run transactions* tab, select *Injected Provider - MetaMask* for the **Environment** field. Make sure the `VRFD20.sol` contract is selected in the **Contract** field.\\\\n\\\\n4) Deploy the contract, passing in the subscription ID of your adequately funded subscription.\\\\n\\\\n5) After the contract is deployed successfully, copy the contract address from Remix. Navigate back to the VRF Subscription Manager and add the contract address as a consumer for your adequately funded subscription.\\\\n\\\\n6) Navigate back to Remix to deploy the contract once more. Change the subscription ID to the subscription ID of your intentionally underfunded subscription, and click **Deploy**.\\\\n\\\\n7) Once more, after the contract is deployed successfully, copy the second contract address from Remix. Navigate back to the VRF Subscription Manager and add this second contract address as a consumer for your intentionally underfunded subscription.### 3. Deploy the subscription balance monitor contractIn this section, you will deploy the subscription balance monitor contract, using the same address that is the admin owner for both of your VRF subscriptions. The contract will monitor any VRF subscriptions owned by this address, and fund any underfunded subscriptions using funds owned by this address.#### Get required inputs for the balance monitor contractThe constructor for this contract requires the following information for the supported network that you want to deploy on:* The LINK token address, which is found on the [LINK token contracts](/resources/link-token-contracts) page.\\\\n* The Automation registry address, which is found on the [Automation supported networks](/chainlink-automation/overview/supported-networks) page.\\\\n* The VRF coordinator address, which is found on the [VRF Subscription Supported Networks](/vrf/v2/subscription/supported-networks) page.\\\\n* Minimum wait period, which you can use to add buffer time between funding multiple subscription IDs. For demo purposes, you will monitor only two VRF subscriptions, so you can set this value to `60` seconds.For Sepolia, these values are all consolidated here:| Item | Value |\\\\n| ------------------ | ----------------------------------------------------------------------------------------------------------------------------- |\\\\n| LINK token address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789) |\\\\n| VRF Coordinator | [0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625](https://sepolia.etherscan.io/address/0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625) |1) Open the `VRFSubscriptionBalanceMonitor.sol` contract in Remix.\\\\n\\\\n [Open VRFSubscriptionBalanceMonitor.sol in Remix](https://remix.ethereum.org/#url=https://docs.chain.link//samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol)\\\\n\\\\n2) Under the *Solidity compiler* tab, compile the contract.\\\\n\\\\n3) Under the *Deploy and run transactions* tab, select *Injected Provider - MetaMask* for the **Environment** field.\\\\n\\\\n4) Expand the **Deploy** field and enter the values for Sepolia:\\\\n\\\\n | Item | Value |\\\\n | ---------------------- | ------------------------------------------ |\\\\n | `LINKTOKENADDRESS` | 0x779877A7B0D9E8603169DdbD7836e478b4624789 |\\\\n | `COORDINATORADDRESS` | 0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625 |\\\\n | `MINWAITPERIODSECONDS` | 60 |\\\\n\\\\n5) Click **Deploy**. MetaMask opens and prompts you to confirm the contract deployment transaction.\\\\n\\\\n6) Copy the address of your newly deployed contract. You can find this in Sepolia Etherscan through the contract deployment transaction, or in Remix in the **Deployed Contracts** section.### 4. Register the subscription balance monitor contract on AutomationIn this section, you will register an upkeep on Chainlink Automation to run the subscription balance monitor contract. This enables Automation to check whether you have any underfunded VRF subscriptions, and if so, top up their balances appropriately.### Register an upkeepRegistering an upkeep on Chainlink Automation creates a smart contract that will run your VRF subscription balance monitor contract. 1) Click **Register new Upkeep**.\\\\n\\\\n2) Select the *Custom logic* trigger option.\\\\n\\\\n3) Copy your contract address from Remix and paste it into the **Target contract address** field.\\\\n\\\\n4) Specify a name for your upkeep and set a **Starting balance** of 5 LINK for this demo. Leave the other settings at their default values.\\\\n\\\\n5) Go to the **Upkeep details** page and copy your **Forwarder address**.\\\\n\\\\n6) Navigate back to Remix and find the `setForwarderAddress` function. Paste your forwarder address and click click **transact** to run the function. MetaMask asks you to confirm the transaction.Now that you've registered the upkeep and configured your contract with your new upkeep's forwarder address, Chainlink Automation handles the rest of the process.### 5. Configure the subscription watch listBefore your contract will fund a subscription, you must set the `watchList` address array with `minBalancesJuels` and `topUpAmountsJuels` variables. For demonstration purposes, you configure your own wallet as the top-up address. This makes it easy to see the ETH being sent as part of the automated top-up function. After you complete this tutorial, you can configure any wallet or contract address that you want to keep funded.1) In the list of functions for your deployed contract, run the `setWatchList` function. This function requires an `subscriptionIds` array, a `minBalancesJuels` array that maps to the subscriptions, and a `topUpAmountsJuels` array that also maps to the subscriptions. In Remix, arrays require brackets and quotes around integer values. For this example, set the following values:\\\\n\\\\n - **subscriptionIds**: `[\\\\\\\"SUB_ID_1\\\\\\\", \\\\\\\"SUB_ID_2\\\\\\\"]`\\\\n - **minBalancesJuels**: `[\\\\\\\"2000000000000000000\\\\\\\", \\\\\\\"2000000000000000000\\\\\\\"]`\\\\n - **topUpAmountsJuels**: `[\\\\\\\"10000000000000000\\\\\\\", \\\\\\\"10000000000000000\\\\\\\"]`\\\\n\\\\n These values tell the top up contract to top up the specified address with 0.01 LINK if the address balance is less than 2 LINK. These settings are intended to demonstrate the example using testnet faucet funds. For a production application, you might set more reasonable values that top up a smart contract with 10 LINK if the balance is less than 1 LINK.\\\\n\\\\n2) After you configure the function values, click **transact** to run the function. MetaMask asks you to confirm the transaction.\\\\n\\\\n3) In the functions list, click the `getWatchList` function to confirm your settings are correct.## Examine the codeThis section explains how the `VRFSubscriptionBalanceMonitor.sol` contract [tracks your VRF subscriptions](#tracking-subscriptions) and [uses Chainlink Automation](#using-automation) to fund your underfunded subscriptions. You can [view the code for the full contract on GitHub](https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol).### Tracking subscriptionsThe `VRFSubscriptionBalanceMonitor.sol` contract tracks your VRF subscriptions by creating a watchlist and storing attributes of each subscription required to monitor when they need funding.The `setWatchList()` function creates the watchlist of subscriptions, validates it, and then sets a `Target` for each subscription. The `Target` struct helps track whether a subscription is active, its minimum balance, when it was last funded, and the amount of LINK (in juels) to send to the subscription each time it is topped up.```solidity\\\\nstruct Target {\\\\n bool isActive;\\\\n uint96 minBalanceJuels;\\\\n uint96 topUpAmountJuels;\\\\n uint56 lastTopUpTimestamp;\\\\n }\\\\n\\\\n...\\\\n\\\\n/**\\\\n * @notice Sets the list of subscriptions to watch and their funding parameters.\\\\n * @param subscriptionIds the list of subscription ids to watch\\\\n * @param minBalancesJuels the minimum balances for each subscription\\\\n * @param topUpAmountsJuels the amount to top up each subscription\\\\n */\\\\n function setWatchList(\\\\n uint64[] calldata subscriptionIds,\\\\n uint96[] calldata minBalancesJuels,\\\\n uint96[] calldata topUpAmountsJuels\\\\n ) external onlyOwner {\\\\n if (subscriptionIds.length != minBalancesJuels.length || subscriptionIds.length != topUpAmountsJuels.length) {\\\\n revert InvalidWatchList();\\\\n }\\\\n uint64[] memory oldWatchList = s_watchList;\\\\n for (uint256 idx = 0; idx < oldWatchList.length; idx++) {\\\\n s_targets[oldWatchList[idx]].isActive = false;\\\\n }\\\\n for (uint256 idx = 0; idx < subscriptionIds.length; idx++) {\\\\n if (s_targets[subscriptionIds[idx]].isActive) {\\\\n revert DuplicateSubscriptionId(subscriptionIds[idx]);\\\\n }\\\\n if (subscriptionIds[idx] == 0) {\\\\n revert InvalidWatchList();\\\\n }\\\\n if (topUpAmountsJuels[idx] <= minBalancesJuels[idx]) {\\\\n revert InvalidWatchList();\\\\n }\\\\n s_targets[subscriptionIds[idx]] = Target({\\\\n isActive: true,\\\\n minBalanceJuels: minBalancesJuels[idx],\\\\n topUpAmountJuels: topUpAmountsJuels[idx],\\\\n lastTopUpTimestamp: 0\\\\n });\\\\n }\\\\n s_watchList = subscriptionIds;\\\\n }\\\\n\\\\n```The `getUnderfundedSubscriptions()` function assesses each subscription in the watchlist and creates a list of subscriptions that need to be funded. Using the attributes stored in the `Target` struct for each subscription, this function adds a subscription to the `needsFunding` list if the following conditions are met:* The subscription is underfunded\\\\n* The owning contract has a sufficient balance to fund the subscription\\\\n* It's been long enough since the last time the subscription's balance was topped up```solidity\\\\n/**\\\\n * @notice Gets a list of subscriptions that are underfunded.\\\\n * @return list of subscriptions that are underfunded\\\\n */\\\\nfunction getUnderfundedSubscriptions() public view returns (uint64[] memory) {\\\\n uint64[] memory watchList = s_watchList;\\\\n uint64[] memory needsFunding = new uint64[](watchList.length);\\\\n uint256 count = 0;\\\\n uint256 minWaitPeriod = s_minWaitPeriodSeconds;\\\\n uint256 contractBalance = LINKTOKEN.balanceOf(address(this));\\\\n Target memory target;\\\\n for (uint256 idx = 0; idx < watchList.length; idx++) {\\\\n target = s_targets[watchList[idx]];\\\\n (uint96 subscriptionBalance, , , ) = COORDINATOR.getSubscription(watchList[idx]);\\\\n if (\\\\n target.lastTopUpTimestamp + minWaitPeriod <= block.timestamp &&\\\\n contractBalance >= target.topUpAmountJuels &&\\\\n subscriptionBalance < target.minBalanceJuels\\\\n ) {\\\\n needsFunding[count] = watchList[idx];\\\\n count++;\\\\n contractBalance -= target.topUpAmountJuels;\\\\n }\\\\n }\\\\n if (count < watchList.length) {\\\\n assembly {\\\\n mstore(needsFunding, count)\\\\n }\\\\n }\\\\n return needsFunding;\\\\n}\\\\n```### Using AutomationThe `VRFSubscriptionBalanceMonitor.sol` contract uses Chainlink Automation to top up underfunded subscriptions:* In `checkUpkeep()`, it pulls the list of underfunded subscriptions. If this list is empty, it indicates that the upkeep is not needed, and Automation takes no further action.\\\\n* Automation only runs `performUpkeep()` if there are underfunded subscriptions, and it tops up any subscriptions that need funding.```solidity\\\\n/**\\\\n * @notice Gets list of subscription ids that are underfunded and returns a keeper-compatible payload.\\\\n * @return upkeepNeeded signals if upkeep is needed, performData is an abi encoded list of subscription ids that need funds\\\\n */\\\\nfunction checkUpkeep(\\\\n bytes calldata\\\\n) external view override whenNotPaused returns (bool upkeepNeeded, bytes memory performData) {\\\\n uint64[] memory needsFunding = getUnderfundedSubscriptions();\\\\n upkeepNeeded = needsFunding.length > 0;\\\\n performData = abi.encode(needsFunding);\\\\n return (upkeepNeeded, performData);\\\\n}\\\\n\\\\n/**\\\\n * @notice Called by the keeper to send funds to underfunded addresses.\\\\n * @param performData the abi encoded list of addresses to fund\\\\n */\\\\nfunction performUpkeep(bytes calldata performData) external override onlyKeeperRegistry whenNotPaused {\\\\n uint64[] memory needsFunding = abi.decode(performData, (uint64[]));\\\\n topUp(needsFunding);\\\\n}\\\\n```\\\"};duplicate=1\",\"component\":\"Markdown parse error\",\"reason\":\"Could not parse expression with acorn\",\"servedText\":\"\\n## OverviewAutomatically top-up your VRF subscription balances using Chainlink Automation to ensure there is sufficient funding for requests. [View the code on GitHub](https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol).## ObjectiveThis example shows how to automate the process for funding VRF subscription balances. You will deploy and test a VRF subscription balance manager contract that monitors multiple subscriptions and tops them up with LINK as necessary. You can set up this contract to monitor existing VRF subscriptions. Alternatively, you will create two VRF subscriptions for testing: one that is underfunded, and another that is adequately funded. When you test the subscription balance manager contract, it only tops up the underfunded subscription.> **CAUTION: Disclaimer**\\n>\\n> This tutorial represents an example of using a Chainlink product or service and is provided to help you understand how\\n> to interact with Chainlink's systems and services so that you can integrate them into your own. This template is\\n> provided \\\"AS IS\\\" and \\\"AS AVAILABLE\\\" without warranties of any kind, has not been audited, and may be missing key\\n> checks or error handling to make the usage of the product more clear. Do not use the code in this example in a\\n> production environment without completing your own audits and application of best practices. Neither Chainlink Labs,\\n> the Chainlink Foundation, nor Chainlink node operators are responsible for unintended outputs that are generated due\\n> to errors in code.## Before you beginBefore you start this tutorial, complete the following items:- If you are new to smart contract development, learn how to [Deploy Your First Smart Contract](/quickstarts/deploy-your-first-contract).\\n- Install and configure a cryptocurrency wallet like [MetaMask](https://metamask.io/).\\n- Get Sepolia testnet LINK and ETH from [faucets.chain.link](https://faucets.chain.link/sepolia).\\n- Gather the subscription IDs for any existing VRF subscriptions you would like to monitor. If you do not have any VRF subscriptions, you will create two for demo purposes in this tutorial.> **NOTE: New to smart contracts?**\\n>\\n> This tutorial assumes that you know how to create and deploy basic smart contracts. If you are new to smart contract\\n> development, deploy a VRF-compatible contract by [following these\\n> instructions](/getting-started/intermediates-tutorial) and then return to this tutorial.## Steps to implementThis tutorial requires you to set up the following components in VRF before you use Automation to monitor VRF subscriptions:* [Create VRF subscriptions to monitor](#create-vrf-subscriptions-to-monitor), if you don't already have any\\n* [Deploy VRF-compatible contracts](#deploy-vrf-compatible-contracts-as-consumers)If you already have existing VRF subscriptions you would like to monitor, [skip to the next step](#deploy-the-subscription-balance-monitor-contract).### 1. Create VRF subscriptions to monitorIf you don't already have existing VRF subscriptions you would like to monitor, create two VRF subscriptions for demo purposes. One subscription will be adequately funded, and the other subscription will be underfunded intentionally so that the subscription balance monitor contract can fund it.1) Open the VRF Subscription Manager, and connect your wallet.\\n\\n \\n\\n2) Create two subscriptions:\\n - Fund one subscription with 12 testnet LINK to serve as the adequately funded VRF subscription\\n - Fund the other subscription with 1 testnet LINK to serve as the underfunded VRF subscription### 2. Deploy VRF-compatible contracts as consumersIn this section, you will deploy the same VRF contract twice. Each deployed contract will serve as a consuming contract for one of your VRF subscriptions.1) Deploy this VRF-compatible contract for your VRF subscription:\\n\\n [Open VRFD20.sol in Remix](https://remix.ethereum.org/#url=https://docs.chain.link//samples/VRF/VRFD20.sol)\\n\\n This `VRFD20.sol` contract uses VRF to randomly assign you a *Game of Thrones* house. The VRF coordinator address and key hash values are hardcoded in this contract for Sepolia. If you want to use a different testnet, you must update those values before deploying the contract.\\n\\n > **NOTE**\\n >\\n > If you are unfamiliar with deploying smart contracts, deploy a VRF-compatible contract by following the [VRF\\n > Getting Started](/vrf/v2/getting-started) guide. Then return to this tutorial.\\n\\n2) Under the *Solidity compiler* tab, compile the contract.\\n\\n3) Under the *Deploy and run transactions* tab, select *Injected Provider - MetaMask* for the **Environment** field. Make sure the `VRFD20.sol` contract is selected in the **Contract** field.\\n\\n4) Deploy the contract, passing in the subscription ID of your adequately funded subscription.\\n\\n5) After the contract is deployed successfully, copy the contract address from Remix. Navigate back to the VRF Subscription Manager and add the contract address as a consumer for your adequately funded subscription.\\n\\n6) Navigate back to Remix to deploy the contract once more. Change the subscription ID to the subscription ID of your intentionally underfunded subscription, and click **Deploy**.\\n\\n7) Once more, after the contract is deployed successfully, copy the second contract address from Remix. Navigate back to the VRF Subscription Manager and add this second contract address as a consumer for your intentionally underfunded subscription.### 3. Deploy the subscription balance monitor contractIn this section, you will deploy the subscription balance monitor contract, using the same address that is the admin owner for both of your VRF subscriptions. The contract will monitor any VRF subscriptions owned by this address, and fund any underfunded subscriptions using funds owned by this address.#### Get required inputs for the balance monitor contractThe constructor for this contract requires the following information for the supported network that you want to deploy on:* The LINK token address, which is found on the [LINK token contracts](/resources/link-token-contracts) page.\\n* The Automation registry address, which is found on the [Automation supported networks](/chainlink-automation/overview/supported-networks) page.\\n* The VRF coordinator address, which is found on the [VRF Subscription Supported Networks](/vrf/v2/subscription/supported-networks) page.\\n* Minimum wait period, which you can use to add buffer time between funding multiple subscription IDs. For demo purposes, you will monitor only two VRF subscriptions, so you can set this value to `60` seconds.For Sepolia, these values are all consolidated here:| Item | Value |\\n| ------------------ | ----------------------------------------------------------------------------------------------------------------------------- |\\n| LINK token address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789) |\\n| VRF Coordinator | [0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625](https://sepolia.etherscan.io/address/0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625) |1) Open the `VRFSubscriptionBalanceMonitor.sol` contract in Remix.\\n\\n [Open VRFSubscriptionBalanceMonitor.sol in Remix](https://remix.ethereum.org/#url=https://docs.chain.link//samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol)\\n\\n2) Under the *Solidity compiler* tab, compile the contract.\\n\\n3) Under the *Deploy and run transactions* tab, select *Injected Provider - MetaMask* for the **Environment** field.\\n\\n4) Expand the **Deploy** field and enter the values for Sepolia:\\n\\n | Item | Value |\\n | ---------------------- | ------------------------------------------ |\\n | `LINKTOKENADDRESS` | 0x779877A7B0D9E8603169DdbD7836e478b4624789 |\\n | `COORDINATORADDRESS` | 0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625 |\\n | `MINWAITPERIODSECONDS` | 60 |\\n\\n5) Click **Deploy**. MetaMask opens and prompts you to confirm the contract deployment transaction.\\n\\n6) Copy the address of your newly deployed contract. You can find this in Sepolia Etherscan through the contract deployment transaction, or in Remix in the **Deployed Contracts** section.### 4. Register the subscription balance monitor contract on AutomationIn this section, you will register an upkeep on Chainlink Automation to run the subscription balance monitor contract. This enables Automation to check whether you have any underfunded VRF subscriptions, and if so, top up their balances appropriately.### Register an upkeepRegistering an upkeep on Chainlink Automation creates a smart contract that will run your VRF subscription balance monitor contract. 1) Click **Register new Upkeep**.\\n\\n2) Select the *Custom logic* trigger option.\\n\\n3) Copy your contract address from Remix and paste it into the **Target contract address** field.\\n\\n4) Specify a name for your upkeep and set a **Starting balance** of 5 LINK for this demo. Leave the other settings at their default values.\\n\\n5) Go to the **Upkeep details** page and copy your **Forwarder address**.\\n\\n6) Navigate back to Remix and find the `setForwarderAddress` function. Paste your forwarder address and click click **transact** to run the function. MetaMask asks you to confirm the transaction.Now that you've registered the upkeep and configured your contract with your new upkeep's forwarder address, Chainlink Automation handles the rest of the process.### 5. Configure the subscription watch listBefore your contract will fund a subscription, you must set the `watchList` address array with `minBalancesJuels` and `topUpAmountsJuels` variables. For demonstration purposes, you configure your own wallet as the top-up address. This makes it easy to see the ETH being sent as part of the automated top-up function. After you complete this tutorial, you can configure any wallet or contract address that you want to keep funded.1) In the list of functions for your deployed contract, run the `setWatchList` function. This function requires an `subscriptionIds` array, a `minBalancesJuels` array that maps to the subscriptions, and a `topUpAmountsJuels` array that also maps to the subscriptions. In Remix, arrays require brackets and quotes around integer values. For this example, set the following values:\\n\\n - **subscriptionIds**: `[\\\"SUB_ID_1\\\", \\\"SUB_ID_2\\\"]`\\n - **minBalancesJuels**: `[\\\"2000000000000000000\\\", \\\"2000000000000000000\\\"]`\\n - **topUpAmountsJuels**: `[\\\"10000000000000000\\\", \\\"10000000000000000\\\"]`\\n\\n These values tell the top up contract to top up the specified address with 0.01 LINK if the address balance is less than 2 LINK. These settings are intended to demonstrate the example using testnet faucet funds. For a production application, you might set more reasonable values that top up a smart contract with 10 LINK if the balance is less than 1 LINK.\\n\\n2) After you configure the function values, click **transact** to run the function. MetaMask asks you to confirm the transaction.\\n\\n3) In the functions list, click the `getWatchList` function to confirm your settings are correct.## Examine the codeThis section explains how the `VRFSubscriptionBalanceMonitor.sol` contract [tracks your VRF subscriptions](#tracking-subscriptions) and [uses Chainlink Automation](#using-automation) to fund your underfunded subscriptions. You can [view the code for the full contract on GitHub](https://github.com/smartcontractkit/documentation/blob/main/public/samples/Automation/tutorials/VRFSubscriptionBalanceMonitor.sol).### Tracking subscriptionsThe `VRFSubscriptionBalanceMonitor.sol` contract tracks your VRF subscriptions by creating a watchlist and storing attributes of each subscription required to monitor when they need funding.The `setWatchList()` function creates the watchlist of subscriptions, validates it, and then sets a `Target` for each subscription. The `Target` struct helps track whether a subscription is active, its minimum balance, when it was last funded, and the amount of LINK (in juels) to send to the subscription each time it is topped up.```solidity\\nstruct Target {\\n bool isActive;\\n uint96 minBalanceJuels;\\n uint96 topUpAmountJuels;\\n uint56 lastTopUpTimestamp;\\n }\\n\\n...\\n\\n/**\\n * @notice Sets the list of subscriptions to watch and their funding parameters.\\n * @param subscriptionIds the list of subscription ids to watch\\n * @param minBalancesJuels the minimum balances for each subscription\\n * @param topUpAmountsJuels the amount to top up each subscription\\n */\\n function setWatchList(\\n uint64[] calldata subscriptionIds,\\n uint96[] calldata minBalancesJuels,\\n uint96[] calldata topUpAmountsJuels\\n ) external onlyOwner {\\n if (subscriptionIds.length != minBalancesJuels.length || subscriptionIds.length != topUpAmountsJuels.length) {\\n revert InvalidWatchList();\\n }\\n uint64[] memory oldWatchList = s_watchList;\\n for (uint256 idx = 0; idx < oldWatchList.length; idx++) {\\n s_targets[oldWatchList[idx]].isActive = false;\\n }\\n for (uint256 idx = 0; idx < subscriptionIds.length; idx++) {\\n if (s_targets[subscriptionIds[idx]].isActive) {\\n revert DuplicateSubscriptionId(subscriptionIds[idx]);\\n }\\n if (subscriptionIds[idx] == 0) {\\n revert InvalidWatchList();\\n }\\n if (topUpAmountsJuels[idx] <= minBalancesJuels[idx]) {\\n revert InvalidWatchList();\\n }\\n s_targets[subscriptionIds[idx]] = Target({\\n isActive: true,\\n minBalanceJuels: minBalancesJuels[idx],\\n topUpAmountJuels: topUpAmountsJuels[idx],\\n lastTopUpTimestamp: 0\\n });\\n }\\n s_watchList = subscriptionIds;\\n }\\n\\n```The `getUnderfundedSubscriptions()` function assesses each subscription in the watchlist and creates a list of subscriptions that need to be funded. Using the attributes stored in the `Target` struct for each subscription, this function adds a subscription to the `needsFunding` list if the following conditions are met:* The subscription is underfunded\\n* The owning contract has a sufficient balance to fund the subscription\\n* It's been long enough since the last time the subscription's balance was topped up```solidity\\n/**\\n * @notice Gets a list of subscriptions that are underfunded.\\n * @return list of subscriptions that are underfunded\\n */\\nfunction getUnderfundedSubscriptions() public view returns (uint64[] memory) {\\n uint64[] memory watchList = s_watchList;\\n uint64[] memory needsFunding = new uint64[](watchList.length);\\n uint256 count = 0;\\n uint256 minWaitPeriod = s_minWaitPeriodSeconds;\\n uint256 contractBalance = LINKTOKEN.balanceOf(address(this));\\n Target memory target;\\n for (uint256 idx = 0; idx < watchList.length; idx++) {\\n target = s_targets[watchList[idx]];\\n (uint96 subscriptionBalance, , , ) = COORDINATOR.getSubscription(watchList[idx]);\\n if (\\n target.lastTopUpTimestamp + minWaitPeriod <= block.timestamp &&\\n contractBalance >= target.topUpAmountJuels &&\\n subscriptionBalance < target.minBalanceJuels\\n ) {\\n needsFunding[count] = watchList[idx];\\n count++;\\n contractBalance -= target.topUpAmountJuels;\\n }\\n }\\n if (count < watchList.length) {\\n assembly {\\n mstore(needsFunding, count)\\n }\\n }\\n return needsFunding;\\n}\\n```### Using AutomationThe `VRFSubscriptionBalanceMonitor.sol` contract uses Chainlink Automation to top up underfunded subscriptions:* In `checkUpkeep()`, it pulls the list of underfunded subscriptions. If this list is empty, it indicates that the upkeep is not needed, and Automation takes no further action.\\n* Automation only runs `performUpkeep()` if there are underfunded subscriptions, and it tops up any subscriptions that need funding.```solidity\\n/**\\n * @notice Gets list of subscription ids that are underfunded and returns a keeper-compatible payload.\\n * @return upkeepNeeded signals if upkeep is needed, performData is an abi encoded list of subscription ids that need funds\\n */\\nfunction checkUpkeep(\\n bytes calldata\\n) external view override whenNotPaused returns (bool upkeepNeeded, bytes memory performData) {\\n uint64[] memory needsFunding = getUnderfundedSubscriptions();\\n upkeepNeeded = needsFunding.length > 0;\\n performData = abi.encode(needsFunding);\\n return (upkeepNeeded, performData);\\n}\\n\\n/**\\n * @notice Called by the keeper to send funds to underfunded addresses.\\n * @param performData the abi encoded list of addresses to fund\\n */\\nfunction performUpkeep(bytes calldata performData) external override onlyKeeperRegistry whenNotPaused {\\n uint64[] memory needsFunding = abi.decode(performData, (uint64[]));\\n topUp(needsFunding);\\n}\\n```\"}", + "{\"path\":\"resources/chainlink-for-agents\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contact us\\\"};duplicate=1\",\"expected\":\"Contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/chainlink-for-agents\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/chainlink-for-agents\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"resources/chainlink-for-agents\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"resources/contributing-to-chainlink\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"resources/developer-communications\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DeveloperCommunicationsCallout\\\",\\\"reason\\\":\\\"Unsupported MDX component DeveloperCommunicationsCallout\\\"};duplicate=1\",\"component\":\"DeveloperCommunicationsCallout\",\"reason\":\"Unsupported MDX component DeveloperCommunicationsCallout\"}", + "{\"path\":\"resources/glossary\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"on our Wiki\\\"};duplicate=1\",\"expected\":\"on our Wiki\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/glossary\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"BNB Chain Bridge\\\"};duplicate=1\",\"expected\":\"BNB Chain Bridge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink PegSwap service\\\"};duplicate=1\",\"expected\":\"Chainlink PegSwap service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Chainlink PegSwap service\\\"};duplicate=2\",\"expected\":\"Chainlink PegSwap service\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Contact us\\\"};duplicate=1\",\"expected\":\"Contact us\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Moving Chainlink Cross-Chains\\\"};duplicate=1\",\"expected\":\"Moving Chainlink Cross-Chains\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Polygon Bridge\\\"};duplicate=1\",\"expected\":\"Polygon Bridge\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=3\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=4\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=5\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=6\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=1\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"br\\\",\\\"reason\\\":\\\"Raw HTML element br is not statically projected\\\"};duplicate=2\",\"component\":\"br\",\"reason\":\"Raw HTML element br is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=1\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"resources/link-token-contracts\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"strong\\\",\\\"reason\\\":\\\"Raw HTML element strong is not statically projected\\\"};duplicate=2\",\"component\":\"strong\",\"reason\":\"Raw HTML element strong is not statically projected\"}", + "{\"path\":\"vrf\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v1/api-reference\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v1/best-practices\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v1/examples/get-a-random-number\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v1/examples/get-a-random-number\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"CodeSample\\\",\\\"reason\\\":\\\"CodeSample path \\\\\\\"/samples/VRF/RandomNumberConsumer.sol\\\\\\\" is missing or escapes the project\\\"};duplicate=1\",\"component\":\"CodeSample\",\"reason\":\"CodeSample path \\\"/samples/VRF/RandomNumberConsumer.sol\\\" is missing or escapes the project\"}", + "{\"path\":\"vrf/v1/introduction\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v1/security\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2-5/arbitrum-cost-estimation\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/best-practices\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/billing\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/direct-funding/get-a-random-number\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/migration-from-v1\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/migration-from-v1\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/migration-from-v1\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/migration-from-v2\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/migration-from-v2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/migration-from-v2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/migration-from-v2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/migration-from-v2\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/overview/subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/overview/subscription\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/subscription/create-manage\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/subscription/create-manage\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/subscription/create-manage\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/subscription/get-a-random-number\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Subscription Manager\\\"};duplicate=1\",\"expected\":\"Open the Subscription Manager\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/get-a-random-number\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/subscription/get-a-random-number\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\").\\\"};duplicate=1\",\"expected\":\").\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\". This mocks funding your subscription with 100 LINK.\\\"};duplicate=1\",\"expected\":\". This mocks funding your subscription with 100 LINK.\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"0x787d74caea10b2b357790d5b5247c2f63d1d91572a9846f780606e4d953677ae\\\"};duplicate=1\",\"expected\":\"0x787d74caea10b2b357790d5b5247c2f63d1d91572a9846f780606e4d953677ae\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"100000000000000000000\\\"};duplicate=1\",\"expected\":\"100000000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"100000000000000000\\\"};duplicate=1\",\"expected\":\"100000000000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"1000000000\\\"};duplicate=1\",\"expected\":\"1000000000\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Click on fundSubscription to fund your subscription. Fill in your subscription ID for _subid and set the _amount to\\\"};duplicate=1\",\"expected\":\"Click on fundSubscription to fund your subscription. Fill in your subscription ID for _subid and set the _amount to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_BASEFEE to\\\"};duplicate=1\",\"expected\":\"_BASEFEE to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_GASPRICELINK to\\\"};duplicate=1\",\"expected\":\"_GASPRICELINK to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"_KEYHASH_ with an arbitrary bytes32 (In this example, you can set the KEYHASH to\\\"};duplicate=1\",\"expected\":\"_KEYHASH_ with an arbitrary bytes32 (In this example, you can set the KEYHASH to\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ContentCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component ContentCommon\\\"};duplicate=1\",\"component\":\"ContentCommon\",\"reason\":\"Unsupported MDX component ContentCommon\"}", + "{\"path\":\"vrf/v2-5/subscription/test-locally\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"LatestPrice\\\",\\\"reason\\\":\\\"Unsupported MDX component LatestPrice\\\"};duplicate=1\",\"component\":\"LatestPrice\",\"reason\":\"Unsupported MDX component LatestPrice\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ETH faucets\\\"};duplicate=1\",\"expected\":\"ETH faucets\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=10\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=11\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=12\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=13\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=14\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=15\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=16\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=17\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=18\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=6\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=7\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=8\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=9\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2-5/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2/best-practices\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/direct-funding\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/direct-funding/examples/get-a-random-number\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/direct-funding/examples/test-locally\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ContentCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component ContentCommon\\\"};duplicate=1\",\"component\":\"ContentCommon\",\"reason\":\"Unsupported MDX component ContentCommon\"}", + "{\"path\":\"vrf/v2/direct-funding/examples/test-locally\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ETH faucets\\\"};duplicate=1\",\"expected\":\"ETH faucets\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=10\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=11\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=2\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=3\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=4\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=5\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=6\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=7\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=8\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=9\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2/direct-funding/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2/estimating-costs\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"DropDown\\\",\\\"reason\\\":\\\"Unsupported MDX component DropDown\\\"};duplicate=1\",\"component\":\"DropDown\",\"reason\":\"Unsupported MDX component DropDown\"}", + "{\"path\":\"vrf/v2/estimating-costs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=1\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2/estimating-costs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=2\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2/estimating-costs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=3\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2/estimating-costs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=4\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2/estimating-costs\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Tabs.slot\\\",\\\"reason\\\":\\\"Dynamic tab slot (missing)\\\"};duplicate=5\",\"component\":\"Tabs.slot\",\"reason\":\"Dynamic tab slot (missing)\"}", + "{\"path\":\"vrf/v2/getting-started\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"vrf/v2/getting-started\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"p\\\",\\\"reason\\\":\\\"Raw HTML element p is not statically projected\\\"};duplicate=1\",\"component\":\"p\",\"reason\":\"Raw HTML element p is not statically projected\"}", + "{\"path\":\"vrf/v2/subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=2\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"YouTube\\\",\\\"reason\\\":\\\"Unsupported MDX component YouTube\\\"};duplicate=1\",\"component\":\"YouTube\",\"reason\":\"Unsupported MDX component YouTube\"}", + "{\"path\":\"vrf/v2/subscription/examples/get-a-random-number\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"Open the Subscription Manager\\\"};duplicate=1\",\"expected\":\"Open the Subscription Manager\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2/subscription/examples/get-a-random-number\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/subscription/examples/get-a-random-number\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=2\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/subscription/examples/get-a-random-number\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2/subscription/examples/programmatic-subscription\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/subscription/examples/test-locally\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"ContentCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component ContentCommon\\\"};duplicate=1\",\"component\":\"ContentCommon\",\"reason\":\"Unsupported MDX component ContentCommon\"}", + "{\"path\":\"vrf/v2/subscription/examples/test-locally\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"ETH faucets\\\"};duplicate=1\",\"expected\":\"ETH faucets\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"missing\",\"language\":\"default\",\"occurrence\":\"lang=default;fact={\\\"kind\\\":\\\"text\\\",\\\"value\\\":\\\"faucets.chain.link\\\"};duplicate=1\",\"expected\":\"faucets.chain.link\",\"reason\":\"Expected source fact is missing from served Markdown\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=1\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=10\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=11\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=2\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=3\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=4\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=5\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=6\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=7\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=8\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"Vrf2_5Common\\\",\\\"reason\\\":\\\"Unsupported MDX component Vrf2_5Common\\\"};duplicate=9\",\"component\":\"Vrf2_5Common\",\"reason\":\"Unsupported MDX component Vrf2_5Common\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=1\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2/subscription/supported-networks\",\"status\":\"unverifiable\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"a\\\",\\\"reason\\\":\\\"Raw HTML element a is not statically projected\\\"};duplicate=2\",\"component\":\"a\",\"reason\":\"Raw HTML element a is not statically projected\"}", + "{\"path\":\"vrf/v2/subscription/ui\",\"status\":\"unsupported\",\"language\":\"default\",\"occurrence\":\"lang=default;diagnostic={\\\"component\\\":\\\"VrfCommon\\\",\\\"reason\\\":\\\"Unsupported MDX component VrfCommon\\\"};duplicate=1\",\"component\":\"VrfCommon\",\"reason\":\"Unsupported MDX component VrfCommon\"}" + ] +} diff --git a/src/scripts/markdown-fidelity-exceptions.ts b/src/scripts/markdown-fidelity-exceptions.ts new file mode 100644 index 00000000000..3dbb85eec99 --- /dev/null +++ b/src/scripts/markdown-fidelity-exceptions.ts @@ -0,0 +1,3 @@ +import type { FidelityException } from "./check-markdown-fidelity.js" + +export const markdownFidelityExceptions: FidelityException[] = []